fix(playlists): make the m3u parser case-insensitive again #3410

This commit is contained in:
Caio Cotts 2024-10-20 14:21:39 -04:00 committed by GitHub
parent 28668782c6
commit 82633d7490
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 2 deletions

View file

@ -162,10 +162,10 @@ func (s *playlists) parseM3U(ctx context.Context, pls *model.Playlist, baseDir s
}
existing := make(map[string]int, len(found))
for idx := range found {
existing[found[idx].Path] = idx
existing[strings.ToLower(found[idx].Path)] = idx
}
for _, path := range filteredLines {
idx, ok := existing[path]
idx, ok := existing[strings.ToLower(path)]
if ok {
mfs = append(mfs, found[idx])
} else {