mirror of
https://github.com/taglib/taglib.git
synced 2026-02-13 03:33:13 -05:00
Fix parsing of TXXX frame without description (#1069)
This commit is contained in:
@ -220,7 +220,7 @@ void TextIdentificationFrame::parseFields(const ByteVector &data)
|
||||
|
||||
unsigned short firstBom = 0;
|
||||
for(ByteVectorList::ConstIterator it = l.begin(); it != l.end(); it++) {
|
||||
if(!(*it).isEmpty()) {
|
||||
if(!it->isEmpty() || (it == l.begin() && frameID() == "TXXX")) {
|
||||
if(d->textEncoding == String::Latin1) {
|
||||
d->fieldList.append(Tag::latin1StringHandler()->parse(*it));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user