forked from len0rd/rockbox
Make the ID3 info screen treat empty tag strings as 'no value', like the WPS does.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13305 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
05a158ecf3
commit
2a20bfe153
1 changed files with 1 additions and 3 deletions
|
|
@ -1228,9 +1228,7 @@ static char * id3_get_info(int selected_item, void* data, char *buffer)
|
||||||
info=id3->path;
|
info=id3->path;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if(info==NULL)
|
return info && *info ? info : (char*) str(LANG_ID3_NO_INFO);
|
||||||
return(str(LANG_ID3_NO_INFO));
|
|
||||||
return(info);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue