mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
update sync cancellation
This commit is contained in:
@@ -360,6 +360,11 @@ namespace Emby.Server.Implementations.Sync
|
||||
whereClauses.Add("UserId=?");
|
||||
paramList.Add(query.UserId);
|
||||
}
|
||||
if (!string.IsNullOrWhiteSpace(query.ItemId))
|
||||
{
|
||||
whereClauses.Add("ItemIds like ?");
|
||||
paramList.Add("%" + query.ItemId + "%");
|
||||
}
|
||||
if (query.SyncNewContent.HasValue)
|
||||
{
|
||||
whereClauses.Add("SyncNewContent=?");
|
||||
|
||||
Reference in New Issue
Block a user