update sync scripts
This commit is contained in:
parent
ec06f3cc61
commit
fc210d8ad2
18 changed files with 1394 additions and 564 deletions
23
dashboard-ui/bower_components/emby-apiclient/sync/transfermanager.js
vendored
Normal file
23
dashboard-ui/bower_components/emby-apiclient/sync/transfermanager.js
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
define(['filerepository'], function (filerepository) {
|
||||
'use strict';
|
||||
|
||||
function downloadFile(url, localPath) {
|
||||
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
function downloadSubtitles(url, localItem, subtitleStreamh) {
|
||||
|
||||
return Promise.resolve('');
|
||||
}
|
||||
|
||||
function downloadImage(url, serverId, itemId, imageTag) {
|
||||
return Promise.resolve(false);
|
||||
}
|
||||
|
||||
return {
|
||||
downloadFile: downloadFile,
|
||||
downloadSubtitles: downloadSubtitles,
|
||||
downloadImage: downloadImage
|
||||
};
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue