mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-28 05:58:21 +00:00
#606 - Add manual image selection for Seasons
This commit is contained in:
@@ -225,8 +225,12 @@ namespace MediaBrowser.Providers.Movies
|
||||
break;
|
||||
}
|
||||
default:
|
||||
reader.Skip();
|
||||
break;
|
||||
{
|
||||
using (reader.ReadSubtree())
|
||||
{
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ namespace MediaBrowser.Providers.TV
|
||||
{
|
||||
var list = new List<RemoteImageInfo>();
|
||||
|
||||
var series = ((Season) item).Series;
|
||||
var series = ((Season)item).Series;
|
||||
|
||||
if (series != null)
|
||||
{
|
||||
@@ -175,8 +175,12 @@ namespace MediaBrowser.Providers.TV
|
||||
break;
|
||||
}
|
||||
default:
|
||||
reader.Skip();
|
||||
break;
|
||||
{
|
||||
using (reader.ReadSubtree())
|
||||
{
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -202,8 +206,8 @@ namespace MediaBrowser.Providers.TV
|
||||
|
||||
int imageSeasonNumber;
|
||||
|
||||
if (!string.IsNullOrEmpty(url) &&
|
||||
!string.IsNullOrEmpty(season) &&
|
||||
if (!string.IsNullOrEmpty(url) &&
|
||||
!string.IsNullOrEmpty(season) &&
|
||||
int.TryParse(season, NumberStyles.Any, _usCulture, out imageSeasonNumber) &&
|
||||
seasonNumber == imageSeasonNumber)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user