This commit is contained in:
mikiher 2025-04-22 05:00:49 +00:00 committed by GitHub
commit 48a1a58642
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -582,7 +582,7 @@ class AudioFileScanner {
*/
parseGenresString(genreTag) {
if (!genreTag?.length) return []
const separators = ['/', '//', ';']
const separators = ['/', '//', ';', ',']
for (let i = 0; i < separators.length; i++) {
if (genreTag.includes(separators[i])) {
return genreTag