wrap in try and update more often

This commit is contained in:
cupcakearmy 2020-09-19 02:05:33 +02:00
parent f72d88ddc1
commit ef2a02577e
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9

View File

@ -5,10 +5,10 @@ import { insertLog, normalizeTimestamp } from '../shared/db'
browser.browserAction.onClicked.addListener(() => browser.tabs.create({ url: dashboard, active: true }))
const frequency = 3000
const frequency = 1000
async function getAllTabs() {
console.log('Checking...')
try {
const tabs = await browser.tabs.query({})
const windows = await browser.windows.getAll()
const active = tabs
@ -31,6 +31,7 @@ async function getAllTabs() {
})
})
)
} catch {}
}
setInterval(() => {