1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-25 01:02:05 +00:00

Fixed: Updating empty Kodi library

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

View file

@ -6,5 +6,10 @@ public class TvShowResult
{
public Dictionary<string, int> Limits { get; set; }
public List<TvShow> TvShows;
public TvShowResult()
{
TvShows = new List<TvShow>();
}
}
}