make sure items is defaulted to a new list

pull/702/head
Luke Pulverenti 10 years ago
parent 4f0e6f61e7
commit d2a0abb568

@ -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…
Cancel
Save