aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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])
}
}
}