Skip to content

Commit 20b7ecc

Browse files
committed
Look for stem file extension case independent
1 parent f4ffeea commit 20b7ecc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/track/steminfoimporter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ bool StemInfoImporter::maybeStemFile(const QString& filePath) {
122122
// static
123123
bool StemInfoImporter::hasStemFileExtension(const QString& filePath) {
124124
for (const QString& ext : kStemPreferredFileExtensions) {
125-
if (filePath.endsWith(ext)) {
125+
if (filePath.endsWith(ext, Qt::CaseInsensitive)) {
126126
return true;
127127
}
128128
}

0 commit comments

Comments
 (0)