From 7a8559226ebd237a0e974f190a9261f417a2dc28 Mon Sep 17 00:00:00 2001 From: Devil Date: Fri, 25 Dec 2020 14:52:47 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E6=8E=88=E6=9D=83=E5=BE=AA?= =?UTF-8?q?=E7=8E=AFbug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sourcecode/baidu/default/app.js | 1 + sourcecode/qq/default/app.js | 1 + sourcecode/toutiao/default/app.js | 1 + sourcecode/weixin/default/app.js | 1 + 4 files changed, 4 insertions(+) diff --git a/sourcecode/baidu/default/app.js b/sourcecode/baidu/default/app.js index ee8893376..0198a5119 100755 --- a/sourcecode/baidu/default/app.js +++ b/sourcecode/baidu/default/app.js @@ -240,6 +240,7 @@ App({ } }, fail: function () { + swan.removeStorageSync(self.data.cache_user_login_key); self.user_login(object, method); } }); diff --git a/sourcecode/qq/default/app.js b/sourcecode/qq/default/app.js index b67263e4b..bb483fa60 100755 --- a/sourcecode/qq/default/app.js +++ b/sourcecode/qq/default/app.js @@ -239,6 +239,7 @@ App({ } }, fail: function () { + qq.removeStorageSync(self.data.cache_user_login_key); self.user_login(object, method); } }); diff --git a/sourcecode/toutiao/default/app.js b/sourcecode/toutiao/default/app.js index 57423de56..b5e38dd96 100755 --- a/sourcecode/toutiao/default/app.js +++ b/sourcecode/toutiao/default/app.js @@ -240,6 +240,7 @@ App({ } }, fail: function () { + tt.removeStorageSync(self.data.cache_user_login_key); self.user_login(object, method); } }); diff --git a/sourcecode/weixin/default/app.js b/sourcecode/weixin/default/app.js index 966efaeb9..78df5902f 100755 --- a/sourcecode/weixin/default/app.js +++ b/sourcecode/weixin/default/app.js @@ -240,6 +240,7 @@ App({ } }, fail: function () { + wx.removeStorageSync(self.data.cache_user_login_key); self.user_login(object, method); } }); -- GitLab