fix reloading unprotected note title to the document.title after entering protected session, fixes #4244

This commit is contained in:
zadam 2023-09-08 00:28:00 +02:00
parent 806062c8d1
commit 8062bb7e2a

View File

@ -647,4 +647,12 @@ export default class TabManager extends Component {
await this.updateDocumentTitle(activeContext);
}
}
async frocaReloadedEvent() {
const activeContext = this.getActiveContext();
if (activeContext) {
await this.updateDocumentTitle(activeContext);
}
}
}