mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
update sync cancellation
This commit is contained in:
parent
0fd7e89039
commit
28bbe32d1d
3 changed files with 18 additions and 0 deletions
|
@ -1030,6 +1030,18 @@ namespace Emby.Server.Implementations.Sync
|
||||||
{
|
{
|
||||||
await CancelJobItem(jobItem.Id).ConfigureAwait(false);
|
await CancelJobItem(jobItem.Id).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var syncJobResult = await GetJobs(new SyncJobQuery
|
||||||
|
{
|
||||||
|
ItemId = item,
|
||||||
|
TargetId = targetId
|
||||||
|
|
||||||
|
}).ConfigureAwait(false);
|
||||||
|
|
||||||
|
foreach (var job in syncJobResult.Items)
|
||||||
|
{
|
||||||
|
await CancelJob(job.Id).ConfigureAwait(false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -360,6 +360,11 @@ namespace Emby.Server.Implementations.Sync
|
||||||
whereClauses.Add("UserId=?");
|
whereClauses.Add("UserId=?");
|
||||||
paramList.Add(query.UserId);
|
paramList.Add(query.UserId);
|
||||||
}
|
}
|
||||||
|
if (!string.IsNullOrWhiteSpace(query.ItemId))
|
||||||
|
{
|
||||||
|
whereClauses.Add("ItemIds like ?");
|
||||||
|
paramList.Add("%" + query.ItemId + "%");
|
||||||
|
}
|
||||||
if (query.SyncNewContent.HasValue)
|
if (query.SyncNewContent.HasValue)
|
||||||
{
|
{
|
||||||
whereClauses.Add("SyncNewContent=?");
|
whereClauses.Add("SyncNewContent=?");
|
||||||
|
|
|
@ -24,6 +24,7 @@ namespace MediaBrowser.Model.Sync
|
||||||
/// <value>The user identifier.</value>
|
/// <value>The user identifier.</value>
|
||||||
public string UserId { get; set; }
|
public string UserId { get; set; }
|
||||||
public string ExcludeTargetIds { get; set; }
|
public string ExcludeTargetIds { get; set; }
|
||||||
|
public string ItemId { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the status.
|
/// Gets or sets the status.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue