mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-17 07:03:45 +02:00
make sure items is defaulted to a new list
This commit is contained in:
parent
4f0e6f61e7
commit
d2a0abb568
1 changed files with 5 additions and 0 deletions
|
|
@ -7,5 +7,10 @@ namespace MediaBrowser.Controller.Channels
|
|||
public List<ChannelItemInfo> Items { get; set; }
|
||||
|
||||
public int? TotalRecordCount { get; set; }
|
||||
|
||||
public ChannelItemResult()
|
||||
{
|
||||
Items = new List<ChannelItemInfo>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue