Browse Source

fix: 消息订阅失败时才弹出提示

carver 2 năm trước cách đây
mục cha
commit
fdc5cf0564
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      antbuilder/core/utils/ywtService.js

+ 3 - 3
antbuilder/core/utils/ywtService.js

@@ -69,10 +69,10 @@ export async function getSubscribeAuth() {
 		const [error, result] = await submitAuthCode({
 			authCode: authResult.authCode,
 		});
-		if (!error) {
+		if (error) {
 			my.showToast({
-				type: "success",
-				content: "消息订阅成功",
+				type: "fail",
+				content: "消息订阅失败",
 			});
 		}
 		return [error, result];