Fixed: Updating empty Kodi library

This commit is contained in:
Mark McDowall 2015-06-24 20:58:56 -07:00
commit bd222dbd95

View file

@ -6,5 +6,10 @@ namespace NzbDrone.Core.Notifications.Xbmc.Model
{
public Dictionary<string, int> Limits { get; set; }
public List<TvShow> TvShows;
public TvShowResult()
{
TvShows = new List<TvShow>();
}
}
}