1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

check for no page on tab

This commit is contained in:
Kyle Spearrin
2018-01-12 16:33:36 -05:00
parent 729380c0ec
commit 64a27e5fd9

View File

@@ -97,6 +97,10 @@ class BrowserApi {
}
const t = win.tabs[tab.index];
if (!t.page) {
return Promise.reject('No page on this tab.');
}
t.page.dispatchMessage('bitwarden', obj);
return Promise.resolve();
}