Browse Source

Merge pull request #7892 from cvium/fix_tv_multi

(cherry picked from commit 21afec32258e29687f6c84b08d60d2d325248837)
Signed-off-by: crobibero <cody@robibe.ro>
Cody Robibero 3 năm trước cách đây
mục cha
commit
b35d608b19

+ 1 - 1
Emby.Server.Implementations/Library/Resolvers/Movies/MovieResolver.cs

@@ -225,7 +225,7 @@ namespace Emby.Server.Implementations.Library.Resolvers.Movies
 
             if (string.Equals(collectionType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase))
             {
-                return ResolveVideos<Episode>(parent, files, true, collectionType, true);
+                return ResolveVideos<Episode>(parent, files, false, collectionType, true);
             }
 
             return null;