Restore resolver that handles alternate videos

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
Joe Rogers 2022-01-16 22:59:14 +01:00
parent 7500c2b28b
commit e762454787
No known key found for this signature in database
GPG key ID: 0074AD57B8FDBBB4

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