mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
Fix Firefox infinite recursion issue.
This commit is contained in:
parent
c76d2c9a95
commit
1753c05686
1 changed files with 1 additions and 1 deletions
|
@ -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])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue