aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelItemResult.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-07 17:22:34 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-07 17:22:34 -0400
commitd2a0abb568d76991d51d89c2e8544f4f4e8a897b (patch)
treeb95a36e9e455653ee9818dd8cdfd970987d52e14 /MediaBrowser.Controller/Channels/ChannelItemResult.cs
parent4f0e6f61e7f5d319a47d78e535d7e2d77ed1e729 (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.cs5
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