diff --git a/app/mattermost.js b/app/mattermost.js index c6e312964..d992d2a4b 100644 --- a/app/mattermost.js +++ b/app/mattermost.js @@ -358,6 +358,7 @@ export default class Mattermost { }; handleReset = () => { + this.appStarted = false; this.resetBadgeAndVersion(); this.startApp('fade'); }; @@ -560,6 +561,7 @@ export default class Mattermost { const {dispatch, getState} = this.store; await loadConfigAndLicense()(dispatch, getState); + this.appStarted = false; this.startApp('fade'); };