mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
update queries
This commit is contained in:
@@ -679,7 +679,7 @@ namespace Emby.Server.Core.Data
|
||||
throw new ArgumentNullException("item");
|
||||
}
|
||||
|
||||
return SaveItems(new[] { item }, cancellationToken);
|
||||
return SaveItems(new List<BaseItem> { item }, cancellationToken);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -693,7 +693,7 @@ namespace Emby.Server.Core.Data
|
||||
/// or
|
||||
/// cancellationToken
|
||||
/// </exception>
|
||||
public async Task SaveItems(IEnumerable<BaseItem> items, CancellationToken cancellationToken)
|
||||
public async Task SaveItems(List<BaseItem> items, CancellationToken cancellationToken)
|
||||
{
|
||||
if (items == null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user