Skip to content

Commit

Permalink
Fix session expired issue (#2921)
Browse files Browse the repository at this point in the history
(cherry picked from commit d2b03fd)
  • Loading branch information
devinbinnie authored and mattermost-build committed Dec 1, 2023
1 parent 4a4a109 commit 8b0e153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/appState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class AppState extends EventEmitter {
updateExpired = (viewId: string, expired: boolean) => {
ServerManager.getViewLog(viewId, 'AppState').silly('updateExpired', expired);

this.unreads.set(viewId, expired);
this.expired.set(viewId, expired);
this.emitStatusForView(viewId);
}

Expand Down

0 comments on commit 8b0e153

Please sign in to comment.