From e8e098f9b15eb20e0b14e24fb2349e1ffe5e5374 Mon Sep 17 00:00:00 2001 From: vitorsemeano Date: Mon, 18 Mar 2019 23:08:11 +0000 Subject: [PATCH] removed nativelshell sync invokation --- src/bower_components/emby-apiclient/sync/localsync.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/bower_components/emby-apiclient/sync/localsync.js b/src/bower_components/emby-apiclient/sync/localsync.js index f2f5f4e9e3..cea244de08 100644 --- a/src/bower_components/emby-apiclient/sync/localsync.js +++ b/src/bower_components/emby-apiclient/sync/localsync.js @@ -3,10 +3,6 @@ define(["connectionManager"], function(connectionManager) { var isSyncing; return { sync: function(options) { - if (window.NativeShell) { - return window.NativeShell.sync(options); - } - return console.log("localSync.sync starting..."), isSyncing ? Promise.resolve() : (isSyncing = !0, new Promise(function(resolve, reject) { require(["multiserversync", "appSettings"], function(MultiServerSync, appSettings) { options = options || {}, options.cameraUploadServers = appSettings.cameraUploadServers(), (new MultiServerSync).sync(connectionManager, options).then(function() {