Convert metadata tag names to lowercase to match getID3 behaviour (#5392)

This commit is contained in:
Vaalyn 2022-05-19 20:18:36 +02:00 committed by GitHub
parent 0074ec2476
commit 4597adacf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class Reader
$tagValue = implode(', ', $flatValue);
}
$metaTags[(string)$tagName] = $this->cleanUpString((string)$tagValue);
$metaTags[strtolower((string)$tagName)] = $this->cleanUpString((string)$tagValue);
}
}
}