diff --git a/ape/apeitem.cpp b/ape/apeitem.cpp index 7f364241..b65232db 100644 --- a/ape/apeitem.cpp +++ b/ape/apeitem.cpp @@ -116,7 +116,7 @@ StringList APE::Item::toStringList() const String APE::Item::toString() const { - return d->text.front(); + return isEmpty() ? String::null : d->text.front(); } bool APE::Item::isEmpty() const