1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #2159 from thornbill/plugin-manager-improvements

Plugin manager improvements
This commit is contained in:
Joshua M. Boniface 2020-12-04 20:27:37 -05:00 committed by GitHub
commit dd080a8aef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 8 deletions

View file

@ -77,7 +77,7 @@ import { playbackManager } from './playback/playbackmanager';
let pluginInstance = await window[pluginSpec];
if (typeof pluginInstance === 'function') {
pluginInstance = await pluginInstance();
pluginInstance = await new pluginInstance();
}
// init plugin and pass basic dependencies