Fix window focus not always working

This commit is contained in:
toasted-nutbread 2019-10-19 22:55:32 -04:00
parent 7abc7fd0e7
commit ce92591b63

View File

@ -367,7 +367,19 @@ async function apiFindTab(timeout, checkUrl) {
}
async function apiFocusTab(tab) {
if (typeof chrome.windows === 'object' && chrome.windows !== null) {
await new Promise((resolve, reject) => {
chrome.tabs.update(tab.id, {active: true}, () => {
const e = chrome.runtime.lastError;
if (e) { reject(e); }
else { resolve(); }
});
});
if (!(typeof chrome.windows === 'object' && chrome.windows !== null)) {
// Windows not supported (e.g. on Firefox mobile)
return;
}
const tabWindow = await new Promise((resolve) => {
chrome.windows.get(tab.windowId, {}, (tabWindow) => {
const e = chrome.runtime.lastError;
@ -384,12 +396,4 @@ async function apiFocusTab(tab) {
});
});
}
}
await new Promise((resolve, reject) => {
chrome.tabs.update(tab.id, {active: true}, () => {
const e = chrome.runtime.lastError;
if (e) { reject(e); }
else { resolve(); }
});
});
}