Removed id3v2 debugging message.
This commit is contained in:
parent
1eda6c0e7d
commit
2659c1905c
1 changed files with 4 additions and 6 deletions
|
@ -44,14 +44,12 @@ namespace TagLib {
|
||||||
|
|
||||||
virtual String title() const
|
virtual String title() const
|
||||||
{
|
{
|
||||||
if(file->ID3v2Tag() && !file->ID3v2Tag()->title().isEmpty()) {
|
if(file->ID3v2Tag() && !file->ID3v2Tag()->title().isEmpty())
|
||||||
printf("Id3v2\n");
|
|
||||||
return file->ID3v2Tag()->title();
|
return file->ID3v2Tag()->title();
|
||||||
}
|
|
||||||
if(file->ID3v1Tag()) {
|
if(file->ID3v1Tag())
|
||||||
printf("Id3v1\n");
|
|
||||||
return file->ID3v1Tag()->title();
|
return file->ID3v1Tag()->title();
|
||||||
}
|
|
||||||
return String::null;
|
return String::null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue