Don't trim() in the mediascanner, as that would remove the special "sort first" character.

This commit is contained in:
Marco Nelissen
2009-07-06 11:07:27 -07:00
parent 899725b05d
commit 73bb511ade

View File

@ -544,7 +544,10 @@ public class MediaScanner
public void handleStringTag(String name, String value) {
if (name.equalsIgnoreCase("title") || name.startsWith("title;")) {
mTitle = value.trim();
// Don't trim() here, to preserve the special \001 character
// used to force sorting. The media provider will trim() before
// inserting the title in to the database.
mTitle = value;
} else if (name.equalsIgnoreCase("artist") || name.startsWith("artist;")) {
mArtist = value.trim();
} else if (name.equalsIgnoreCase("albumartist") || name.startsWith("albumartist;")) {