Merge pull request #7203 from 1337joe/fix-resolving-local-alternates

Fix resolving local alternates
This commit is contained in:
Claus Vium
2022-01-19 14:36:50 +01:00
committed by GitHub
3 changed files with 43 additions and 21 deletions

View File

@@ -128,10 +128,9 @@ namespace Emby.Server.Implementations.Library.Resolvers.Movies
return movie?.ExtraType == null ? movie : null;
}
// Owned items will be caught by the video extra resolver
if (args.Parent == null)
{
return null;
return base.Resolve(args);
}
if (IsInvalid(args.Parent, collectionType))