فهرست منبع

make sure items is defaulted to a new list

Luke Pulverenti 11 سال پیش
والد
کامیت
d2a0abb568
1فایلهای تغییر یافته به همراه5 افزوده شده و 0 حذف شده
  1. 5 0
      MediaBrowser.Controller/Channels/ChannelItemResult.cs

+ 5 - 0
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>();
+        }
     }
 }