No need to call ID3v2::Frame::render() twice when saving an ID3v2 tag.

This commit is contained in:
Tsuda Kageyu 2015-05-19 17:39:37 +09:00
parent 60966518e2
commit 287078566f

View File

@ -602,7 +602,7 @@ ByteVector ID3v2::Tag::render(int version) const
+ String((*it)->header()->frameID()) + "\' has been discarded");
continue;
}
tagData.append((*it)->render());
tagData.append(frameData);
}
}