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

update sync

This commit is contained in:
Luke Pulverenti 2016-08-23 02:42:15 -04:00
parent 0a7858143c
commit dd0540c6b9
13 changed files with 578 additions and 439 deletions

View file

@ -2041,7 +2041,8 @@
function onSyncClick() {
require(['syncDialog'], function (syncDialog) {
syncDialog.showMenu({
items: [currentItem]
items: [currentItem],
serverId: ApiClient.serverId()
});
});
}
@ -2058,7 +2059,9 @@
require(['syncDialog'], function (syncDialog) {
syncDialog.showMenu({
items: [currentItem],
isLocalSync: true
isLocalSync: true,
serverId: ApiClient.serverId()
}).then(function () {
reload(view, params);
}, resetSyncStatus);