#606 - Add manual image selection for Seasons

This commit is contained in:
Luke Pulverenti 2013-11-01 16:34:26 -04:00
parent d187b3b7dd
commit df65ee2e49
2 changed files with 15 additions and 7 deletions

View File

@ -225,8 +225,12 @@ namespace MediaBrowser.Providers.Movies
break;
}
default:
reader.Skip();
break;
{
using (reader.ReadSubtree())
{
}
break;
}
}
}
}

View File

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