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

unify appSettings

This commit is contained in:
Luke Pulverenti 2016-03-01 01:02:03 -05:00
parent 5466e3660a
commit 87e23915c8
21 changed files with 208 additions and 408 deletions

View file

@ -1,4 +1,4 @@
(function () {
define(['appSettings'], function (appSettings) {
var syncPromise;
@ -22,7 +22,7 @@
LocalSync.normalizeSyncOptions(options);
options.cameraUploadServers = AppSettings.cameraUploadServers();
options.cameraUploadServers = appSettings.cameraUploadServers();
syncPromise = new MediaBrowser.MultiServerSync(ConnectionManager).sync(options).then(function () {
@ -39,7 +39,7 @@
},
normalizeSyncOptions: function (options) {
},
getSyncStatus: function () {
@ -50,4 +50,5 @@
return 'Idle';
}
};
})();
});