1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00

check tab

This commit is contained in:
Kyle Spearrin 2017-08-30 08:28:48 -04:00
parent fcb7972fca
commit 7ce6634120

View File

@ -402,6 +402,10 @@ function messageTab(tabId, command, data, callback) {
} }
function collectPageDetailsForContentScript(tab, sender) { function collectPageDetailsForContentScript(tab, sender) {
if (!tab || !tab.id) {
return;
}
chrome.tabs.sendMessage(tab.id, { command: 'collectPageDetails', tab: tab, sender: sender }, function () { chrome.tabs.sendMessage(tab.id, { command: 'collectPageDetails', tab: tab, sender: sender }, function () {
}); });
} }