mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
update server sync
This commit is contained in:
@@ -35,7 +35,14 @@ namespace MediaBrowser.Model.ApiClient
|
||||
|
||||
public static Task<SyncDialogOptions> GetSyncOptions(this IApiClient apiClient, SyncJob job)
|
||||
{
|
||||
return apiClient.GetSyncOptions(job.RequestedItemIds, job.UserId, job.ParentId, job.Category);
|
||||
return apiClient.GetSyncOptions(new SyncJobRequest
|
||||
{
|
||||
Category = job.Category,
|
||||
ItemIds = job.RequestedItemIds,
|
||||
ParentId = job.ParentId,
|
||||
TargetId = job.TargetId,
|
||||
UserId = job.UserId
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user