Catch exception thrown on Edge

This commit is contained in:
toasted-nutbread 2019-10-20 10:58:22 -04:00
parent d7dc8ac9cd
commit 362a1ed9e4

View File

@ -380,6 +380,7 @@ async function apiFocusTab(tab) {
return;
}
try {
const tabWindow = await new Promise((resolve) => {
chrome.windows.get(tab.windowId, {}, (tabWindow) => {
const e = chrome.runtime.lastError;
@ -396,4 +397,7 @@ async function apiFocusTab(tab) {
});
});
}
} catch (e) {
// Edge throws exception for no reason here.
}
}