mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add movie resolver fix
This commit is contained in:
parent
c23547137d
commit
50dc5c4d1b
13 changed files with 398 additions and 25 deletions
23
dashboard-ui/apiclient/sync/offlineusersync.js
Normal file
23
dashboard-ui/apiclient/sync/offlineusersync.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
(function (globalScope) {
|
||||
|
||||
function offlineUserSync() {
|
||||
|
||||
var self = this;
|
||||
|
||||
self.sync = function (apiClient) {
|
||||
|
||||
var deferred = DeferredBuilder.Deferred();
|
||||
|
||||
deferred.resolve();
|
||||
|
||||
return deferred.promise();
|
||||
};
|
||||
}
|
||||
|
||||
if (!globalScope.MediaBrowser) {
|
||||
globalScope.MediaBrowser = {};
|
||||
}
|
||||
|
||||
globalScope.MediaBrowser.OfflineUserSync = offlineUserSync;
|
||||
|
||||
})(this);
|
Loading…
Add table
Add a link
Reference in a new issue