mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
make sure items is defaulted to a new list
This commit is contained in:
parent
4f0e6f61e7
commit
d2a0abb568
@ -7,5 +7,10 @@ namespace MediaBrowser.Controller.Channels
|
|||||||
public List<ChannelItemInfo> Items { get; set; }
|
public List<ChannelItemInfo> Items { get; set; }
|
||||||
|
|
||||||
public int? TotalRecordCount { get; set; }
|
public int? TotalRecordCount { get; set; }
|
||||||
|
|
||||||
|
public ChannelItemResult()
|
||||||
|
{
|
||||||
|
Items = new List<ChannelItemInfo>();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user