diff --git a/src/global/actions/ui/chats.ts b/src/global/actions/ui/chats.ts index 65d593d8c..d5782cd7f 100644 --- a/src/global/actions/ui/chats.ts +++ b/src/global/actions/ui/chats.ts @@ -83,6 +83,7 @@ addActionHandler('openChatInNewTab', (global, actions, payload): ActionReturnTyp addActionHandler('openPreviousChat', (global, actions, payload): ActionReturnType => { const { tabId = getCurrentTabId() } = payload || {}; + actions.updatePageTitle({ tabId }); return updateCurrentMessageList(global, undefined, undefined, undefined, undefined, undefined, tabId); });