#606 - Add manual image selection for Seasons

pull/702/head
Luke Pulverenti 11 years ago
parent d187b3b7dd
commit df65ee2e49

@ -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)
{

Loading…
Cancel
Save