mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix support for episodes in a series folder
This commit is contained in:
parent
41fae899b0
commit
51954a283f
@ -35,7 +35,7 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
|
|||||||
}
|
}
|
||||||
|
|
||||||
// If the parent is a Season or Series, then this is an Episode if the VideoResolver returns something
|
// If the parent is a Season or Series, then this is an Episode if the VideoResolver returns something
|
||||||
if (season != null || parent.Parents.OfType<Series>().Any())
|
if (season != null || parent is Series || parent.Parents.OfType<Series>().Any())
|
||||||
{
|
{
|
||||||
Episode episode = null;
|
Episode episode = null;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user