mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-28 05:04:16 -05:00
Fix problems with scanning fileinfo of files with uppercase extensions
This commit is contained in:
@@ -976,7 +976,7 @@ int scan_get_fileinfo(char *file, MP3FILE *pmp3) {
|
||||
|
||||
/* dispatch to appropriate tag handler */
|
||||
for(hdl = taghandlers ; hdl->suffix ; ++hdl)
|
||||
if(!strcmp(hdl->suffix, pmp3->type))
|
||||
if(!strcasecmp(hdl->suffix, pmp3->type))
|
||||
break;
|
||||
|
||||
if(hdl->files)
|
||||
|
||||
Reference in New Issue
Block a user