mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-03 17:02:07 +01:00
update live tv data transfer
This commit is contained in:
@@ -13,7 +13,7 @@ namespace MediaBrowser.Model.Sync
|
||||
/// Gets or sets the item ids.
|
||||
/// </summary>
|
||||
/// <value>The item ids.</value>
|
||||
public List<string> ItemIds { get; set; }
|
||||
public string[] ItemIds { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the category.
|
||||
/// </summary>
|
||||
@@ -67,7 +67,7 @@ namespace MediaBrowser.Model.Sync
|
||||
|
||||
public SyncJobRequest()
|
||||
{
|
||||
ItemIds = new List<string>();
|
||||
ItemIds = new string[] { };
|
||||
SyncNewContent = true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user