1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-05 18:05:09 +01:00

error prop may not always exist

This commit is contained in:
RMidhunSuresh 2022-08-24 16:03:21 +05:30
parent 5521862498
commit 7b173fe8eb

View File

@ -99,7 +99,7 @@ export class SessionViewModel extends ViewModel {
this._client.sync.status.subscribe(status => {
if (status === SyncStatus.Stopped) {
const error = this._client.sync.error;
if (error.errcode === "M_UNKNOWN_TOKEN") {
if (error?.errcode === "M_UNKNOWN_TOKEN") {
// Access token is no longer valid, so force the user to log out
const segments = [
this.navigation.segment("logout", this.id),