mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Fix incorrect commit
This commit is contained in:
parent
e9a671476b
commit
6e0741bcdc
@ -251,7 +251,7 @@ int ASF::Attribute::dataSize() const
|
||||
if(d->pictureValue.isValid()) {
|
||||
return d->pictureValue.dataSize();
|
||||
}
|
||||
break;
|
||||
return d->byteVectorValue.size();
|
||||
case GuidType:
|
||||
return d->byteVectorValue.size();
|
||||
}
|
||||
@ -292,6 +292,9 @@ ByteVector ASF::Attribute::render(const String &name, int kind) const
|
||||
if(d->pictureValue.isValid()) {
|
||||
data.append(d->pictureValue.render());
|
||||
}
|
||||
else {
|
||||
data.append(d->byteVectorValue);
|
||||
}
|
||||
break;
|
||||
case GuidType:
|
||||
data.append(d->byteVectorValue);
|
||||
|
Loading…
Reference in New Issue
Block a user