* prefer Track info over Title info when formatting {t}

This commit is contained in:
Reinhard Pointner 2015-12-10 17:09:13 +00:00
parent 1bb839ef5b
commit 4272995a27
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class ID3Lookup implements MusicIdentificationService {
// all other properties are optional
String album = getString(mediaInfo, "Album");
String albumArtist = getString(mediaInfo, "Album/Performer");
String trackTitle = null;
String trackTitle = getString(mediaInfo, "Track");
SimpleDate albumReleaseDate = null;
Integer mediumIndex = null;
Integer mediumCount = null;