1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* 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

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;