1 parent f4ffeea commit 20b7eccCopy full SHA for 20b7ecc
1 file changed
src/track/steminfoimporter.cpp
@@ -122,7 +122,7 @@ bool StemInfoImporter::maybeStemFile(const QString& filePath) {
122
// static
123
bool StemInfoImporter::hasStemFileExtension(const QString& filePath) {
124
for (const QString& ext : kStemPreferredFileExtensions) {
125
- if (filePath.endsWith(ext)) {
+ if (filePath.endsWith(ext, Qt::CaseInsensitive)) {
126
return true;
127
}
128
0 commit comments