diff --git a/id3v1.go b/id3v1.go index 00ad891..c203eb1 100644 --- a/id3v1.go +++ b/id3v1.go @@ -85,6 +85,8 @@ func ReadID3v1Tags(r io.ReadSeeker) (Metadata, error) { if commentBytes[28] == 0 { comment = strings.TrimSpace(string(commentBytes[:28])) track = int(commentBytes[29]) + } else { + comment = strings.TrimSpace(string(commentBytes)) } var genre string