mirror of
https://github.com/taglib/taglib.git
synced 2025-06-03 09:08:09 -04:00
Also counts as being empty.
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@909060 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
parent
16a7efcd1c
commit
3a390a11d0
@ -164,7 +164,7 @@ bool APE::Item::isEmpty() const
|
||||
case Binary:
|
||||
if(d->text.isEmpty())
|
||||
return true;
|
||||
if(d->text.size() == 1 && d->text.front().isEmpty())
|
||||
if(d->text.isEmpty() || (d->text.size() == 1 && d->text.front().isEmpty()))
|
||||
return true;
|
||||
return false;
|
||||
case Locator:
|
||||
|
Loading…
x
Reference in New Issue
Block a user