Fix: unregistring a plugin did not remove properly his hooks.
This commit is contained in:
parent
96a4a7c332
commit
98da1a7b4a
|
@ -194,7 +194,7 @@ export class PluginManager implements ServerHook {
|
|||
|
||||
// Remove hooks of this plugin
|
||||
for (const key of Object.keys(this.hooks)) {
|
||||
this.hooks[key] = this.hooks[key].filter(h => h.pluginName !== npmName)
|
||||
this.hooks[key] = this.hooks[key].filter(h => h.npmName !== npmName)
|
||||
}
|
||||
|
||||
this.reinitVideoConstants(plugin.npmName)
|
||||
|
|
Loading…
Reference in New Issue