Fix apiclient imports

This commit is contained in:
Bill Thornton
2020-09-08 02:05:02 -04:00
committed by vitorsemeano
parent 7d9208e951
commit a71b0314d4
71 changed files with 424 additions and 425 deletions
@@ -1,4 +1,4 @@
import events from 'events';
import { Events, ConnectionManager } from 'jellyfin-apiclient';
// LinkParser
//
@@ -221,8 +221,8 @@ function getCachedValue(key) {
return null;
}
events.on(window.connectionManager, 'localusersignedin', clearCache);
events.on(window.connectionManager, 'localusersignedout', clearCache);
Events.on(ConnectionManager, 'localusersignedin', clearCache);
Events.on(ConnectionManager, 'localusersignedout', clearCache);
export default {
getServerAddress: getServerAddress