diff --git a/id3v2frames.go b/id3v2frames.go index 83958a6..db95135 100644 --- a/id3v2frames.go +++ b/id3v2frames.go @@ -508,6 +508,7 @@ func (u UFID) String() string { func readUFID(b []byte) *UFID { result := bytes.SplitN(b, singleZero, 2) if len(result) != 2 { + // Sometimes the UFID consists of one part, for example: track-5979322WOAF return &UFID{ Identifier: result[0], }