Skip to content

Commit

Permalink
Merge pull request #248 from ajayyy/hotfix-invidious
Browse files Browse the repository at this point in the history
Fixed firefox content script registration
  • Loading branch information
ajayyy authored Jan 22, 2020
2 parents 7255300 + bdcd613 commit 2b7f940
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function registerFirefoxContentScript(options) {
js: options.js,
css: options.css,
matches: options.matches
}).then(() => void (contentScriptRegistrations[options.id] = registration));
}).then((registration) => void (contentScriptRegistrations[options.id] = registration));
}

//gets the sponsor times from memory
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_fullName__",
"short_name": "__MSG_Name__",
"version": "1.2.4",
"version": "1.2.5",
"default_locale": "en",
"description": "__MSG_Description__",
"content_scripts": [
Expand Down

0 comments on commit 2b7f940

Please sign in to comment.