mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-13 02:14:23 +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
|
// Import all entries if they were given
|
||||||
if (entries !== undefined) {
|
if (entries !== undefined) {
|
||||||
for (const item of entries) {
|
for (const item of entries) {
|
||||||
this.set(item[0], item[1])
|
super.set(item[0], item[1])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue