diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-07 22:43:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-07 22:43:14 -0500 |
commit | db9ec4c4495404ad3ebc9ce56866c3631cedf8dc (patch) | |
tree | 0d9e1744e6cd9d3ae42ea328a82a8e357b90b8e3 /ext/bg/js/backend.js | |
parent | be952a1857da88de33322a8070252881d7b99391 (diff) |
Fix search tab opening having some errors (#1004)
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 65df0d49..5462d4c9 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -1289,8 +1289,8 @@ class Backend { const promises = []; for (const tab of tabs) { - const promise = this._getTabUrl(tab); - promise.then(checkTabUrl); + const promise = this._getTabUrl(tab.id); + promise.then((url) => checkTabUrl({url, tab})); promises.push(promise); } |