Skip to content

Commit 71c1421

Browse files
committed
Merge branch 'release/1.0.1'
2 parents d67e6a1 + e40916b commit 71c1421

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "twitch-auto-points",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

src/background/browserAction.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ browser.storage.onChanged.addListener((changes, areaName) => {
6969

7070
const redirectedToTwitch = {};
7171

72-
browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
72+
browser.tabs.onUpdated.addListener((tabId, changeInfo) => {
7373
if (changeInfo.status === 'loading') {
7474
if (twitchUrlRegexp.test(changeInfo.url)) {
7575
unlockForTab(tabId);
@@ -84,4 +84,4 @@ browser.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
8484
} else if (changeInfo.status === 'complete' && redirectedToTwitch[tabId]) {
8585
emitStatus(tabId, isEnabled);
8686
}
87-
}, { properties: ['status'] });
87+
});

0 commit comments

Comments
 (0)