Merge pull request #5748 from cvium/playlist-audio-type

Set mediatype to Audio for playlists in a music library

(cherry picked from commit cd0daa7985c17bef28f8dc109686271045c18794)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Joshua M. Boniface 2021-04-11 13:28:49 -04:00
parent 7aad16b6ec
commit 9ca7d62709

View File

@ -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
};
}
}