Hi,
Thanks for the work on MPExtended.
I noticed the web interface doesn't allow access to specials in the TV Shows tab. This can be a problem as some series have important episodes listed as specials.
These specials are listed as being in Season 0 in the TV series database. The line:
if (!season.SeasonNumber.Equals(0))
in
MPExtended\WebMediaPortal\www\Views\TVShowsLibrarySeasons.cshtml
causes Season 0 to be skipped.
Changing the line to something like
if (!season.SeasonNumber.Equals(99))
allows access to the Season 0 episodes, with no apparent problems.
Rob
Thanks for the work on MPExtended.
I noticed the web interface doesn't allow access to specials in the TV Shows tab. This can be a problem as some series have important episodes listed as specials.
These specials are listed as being in Season 0 in the TV series database. The line:
if (!season.SeasonNumber.Equals(0))
in
MPExtended\WebMediaPortal\www\Views\TVShowsLibrarySeasons.cshtml
causes Season 0 to be skipped.
Changing the line to something like
if (!season.SeasonNumber.Equals(99))
allows access to the Season 0 episodes, with no apparent problems.
Rob