jellyfin/MediaBrowser.Controller/Entities/TV
Mike 6fbbf913e4 Fix season images not showing up when Emby starts.
The TvdbSeasonImageProvider was running before the TvdbSeasonImageProvider. This caused the seriesid be null on the series. (This is apparently populated as part of the metadata refresh on the series. Moving that scan before the seasons seems to fix the problem.

See the following code from TvdbSeriesImageProvider

var seriesId = series != null ? series.GetProviderId(MetadataProviders.Tvdb) : null;
if (!string.IsNullOrEmpty(seriesId) && season.IndexNumber.HasValue)
2015-03-23 21:37:21 -04:00
..
Episode.cs restore dummy season folder creation 2015-01-28 16:29:02 -05:00
Season.cs some initial work on cloud sync 2015-02-05 00:29:37 -05:00
Series.cs Fix season images not showing up when Emby starts. 2015-03-23 21:37:21 -04:00