From 1753c05686e60ac552c70a0f5dc160b14fd2c235 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Sun, 9 Feb 2020 10:34:18 -0500 Subject: Fix Firefox infinite recursion issue. --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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]) } } } -- cgit v1.2.3 From cfb902180dd6491c1e13d14b218d6913672434cb Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Sun, 9 Feb 2020 10:35:32 -0500 Subject: Increased version number. --- manifest/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": [ -- cgit v1.2.3