Add m3u playlists

This commit is contained in:
Nirvana
2026-02-10 11:55:17 +01:00
parent 35e35ba625
commit 83a83e3a3a
@@ -663,8 +663,15 @@ class M3UProvider(StreamingProvider):
for i, line in enumerate(lines):
line = line.strip()
# Skip empty lines and comments (except directives)
if not line or (line.startswith("#") and not line.startswith("#EXT")):
if not line:
continue
# Skip only pure comments (lines starting with # but not our directives)
if line.startswith("#") and not (
line.startswith("#EXT") or
line.startswith("#KODIPROP") or
line.startswith("#EXTVLCOPT")
):
continue
# Parse EXTINF line