diff --git a/app/user.js b/app/user.js index 04c3d4c5..4f22f16c 100644 --- a/app/user.js +++ b/app/user.js @@ -129,7 +129,8 @@ export default class User { list = JSON.parse(textDecoder.decode(decrypted)); } catch (e) { if (e.message === '401') { - return this.logout(); + this.logout(); + return { incoming: true }; } } changes = await this.storage.merge(list);