mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
only send message when there is a page on tab
This commit is contained in:
@@ -97,11 +97,10 @@ class BrowserApi {
|
||||
}
|
||||
|
||||
const t = win.tabs[tab.index];
|
||||
if (!t.page) {
|
||||
return Promise.reject('No page on this tab.');
|
||||
if (t.page) {
|
||||
t.page.dispatchMessage('bitwarden', obj);
|
||||
}
|
||||
|
||||
t.page.dispatchMessage('bitwarden', obj);
|
||||
return Promise.resolve();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user