We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0845a59 commit b5e51e2Copy full SHA for b5e51e2
1 file changed
src/util/cover_tag_handler.cpp
@@ -68,7 +68,7 @@ bool extract_ape(TagLib::APE::Tag* tag)
68
const TagLib::APE::ItemListMap& listMap = tag->itemListMap();
69
if (listMap.contains("COVER ART (FRONT)")) {
70
const TagLib::ByteVector nullStringTerminator(1, 0);
71
- TagLib::ByteVector item = listMap["COVER ART (FRONT)"].value();
+ TagLib::ByteVector item = listMap["COVER ART (FRONT)"].binaryData();
72
const int pos = item.find(nullStringTerminator); // Skip the filename.
73
if (pos != -1) {
74
const TagLib::ByteVector& pic = item.mid(pos + 1);
0 commit comments