aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAjay Ramachandran <[email protected]>2020-02-09 10:36:20 -0500
committerGitHub <[email protected]>2020-02-09 10:36:20 -0500
commit79b02c7ae775989be45d8e248219b16d80acfc79 (patch)
tree10436aba867b6f4cc50aef2da114fc62078ec1fe
parentc76d2c9a9566139ef9c5f4631007cf729d79aab9 (diff)
parentcfb902180dd6491c1e13d14b218d6913672434cb (diff)
downloadSponsorBlock-1.2.8.tar.gz
SponsorBlock-1.2.8.zip
Merge pull request #269 from ajayyy/experimental1.2.8
Fixed Firefox recursion issue
-rw-r--r--manifest/manifest.json2
-rw-r--r--src/config.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/manifest/manifest.json b/manifest/manifest.json
index 391b76af..ef72db83 100644
--- a/manifest/manifest.json
+++ b/manifest/manifest.json
@@ -1,7 +1,7 @@
{
"name": "__MSG_fullName__",
"short_name": "__MSG_Name__",
- "version": "1.2.6",
+ "version": "1.2.8",
"default_locale": "en",
"description": "__MSG_Description__",
"content_scripts": [
diff --git a/src/config.ts b/src/config.ts
index 7ad653cd..c12e7f67 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -48,7 +48,7 @@ class SBMap<T, U> extends Map {
// Import all entries if they were given
if (entries !== undefined) {
for (const item of entries) {
- this.set(item[0], item[1])
+ super.set(item[0], item[1])
}
}
}