diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-07 17:22:34 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-07 17:22:34 -0400 |
| commit | d2a0abb568d76991d51d89c2e8544f4f4e8a897b (patch) | |
| tree | b95a36e9e455653ee9818dd8cdfd970987d52e14 /MediaBrowser.Controller/Channels/ChannelItemResult.cs | |
| parent | 4f0e6f61e7f5d319a47d78e535d7e2d77ed1e729 (diff) | |
make sure items is defaulted to a new list
Diffstat (limited to 'MediaBrowser.Controller/Channels/ChannelItemResult.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/ChannelItemResult.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelItemResult.cs b/MediaBrowser.Controller/Channels/ChannelItemResult.cs index 3ec5b7c24..f88881811 100644 --- a/MediaBrowser.Controller/Channels/ChannelItemResult.cs +++ b/MediaBrowser.Controller/Channels/ChannelItemResult.cs @@ -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>(); + } } }
\ No newline at end of file |
