浏览代码

Set mediatype to Audio for playlists in a music library

cvium 4 年之前
父节点
当前提交
ef527df28f
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      Emby.Server.Implementations/Library/Resolvers/PlaylistResolver.cs

+ 2 - 1
Emby.Server.Implementations/Library/Resolvers/PlaylistResolver.cs

@@ -63,7 +63,8 @@ namespace Emby.Server.Implementations.Library.Resolvers
                     {
                         Path = args.Path,
                         Name = Path.GetFileNameWithoutExtension(args.Path),
-                        IsInMixedFolder = true
+                        IsInMixedFolder = true,
+                        PlaylistMediaType = MediaType.Audio
                     };
                 }
             }