Hey,
Is your feature request related to a problem? Please describe.
when indexing my music archive, there are also a lot m3u playlist files included in the album folders. But I don't want Jellyfin to index and include them into the playlist section. Otherwise the playlist section is full of album playlists and I cannot find my own custom playlists.
Describe the solution you'd like
Option to exclude m3u and playlist files from library indexing.
Describe alternatives you've considered
Additional context
Best regards,
Jonas
Dirty hack to disable playlist detection, remove all known playlist file extensions in MediaBrowser.Controller/Playlists/Playlist.cs:
public static string[] SupportedExtensions =
{
".none"
};
Custom playlists stored in data/playlists will still be available :)
Most helpful comment
Dirty hack to disable playlist detection, remove all known playlist file extensions in
MediaBrowser.Controller/Playlists/Playlist.cs:Custom playlists stored in
data/playlistswill still be available :)