This commit is contained in:
jonaswinkler 2020-12-03 18:37:25 +01:00
parent 8b16cd99dc
commit 1b5b07a020

View File

@ -90,7 +90,9 @@ export class AppFrameComponent implements OnInit, OnDestroy {
}
ngOnDestroy() {
this.openDocumentsSubscription.unsubscribe()
if (this.openDocumentsSubscription) {
this.openDocumentsSubscription.unsubscribe()
}
}
}