Fix problems with scanning fileinfo of files with uppercase extensions
This commit is contained in:
parent
bc9577bbcc
commit
de5ed17847
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue