diff options
author | Ajay Ramachandran <[email protected]> | 2020-02-09 10:34:18 -0500 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-02-09 10:34:18 -0500 |
commit | 1753c05686e60ac552c70a0f5dc160b14fd2c235 (patch) | |
tree | 60be5ba745dada33ffea9f17ae813ea3534ad15d | |
parent | c76d2c9a9566139ef9c5f4631007cf729d79aab9 (diff) | |
download | SponsorBlock-1753c05686e60ac552c70a0f5dc160b14fd2c235.tar.gz SponsorBlock-1753c05686e60ac552c70a0f5dc160b14fd2c235.zip |
Fix Firefox infinite recursion issue.
-rw-r--r-- | src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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]) } } } |