Typo, forgotten debug string and a missing comment

This commit is contained in:
Xavier Henner
2015-05-18 09:56:47 +02:00
parent 7fac753a70
commit 0ae35897fa
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ func (m metadataID3v2) Disc() (int, int) {
func (m metadataID3v2) Lyrics() string {
t, ok := m.frames[frames.Name("lyrics", m.Format())]
if !ok {
return "toto"
return ""
}
return t.(*Comm).Text
}