1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

null checks on query param sub

This commit is contained in:
Kyle Spearrin
2019-01-16 23:30:39 -05:00
parent c6e324bf16
commit 7653ce2234
10 changed files with 28 additions and 10 deletions

View File

@@ -50,7 +50,9 @@ export class ViewComponent extends BaseViewComponent {
}
await this.load();
queryParamsSub.unsubscribe();
if (queryParamsSub != null) {
queryParamsSub.unsubscribe();
}
});
super.ngOnInit();
}