mirror of
https://github.com/taglib/taglib.git
synced 2026-02-11 18:00:17 -05:00
Avoid using String::isNull() where it is considered to be confused with isEmpty().
This commit is contained in:
@ -128,7 +128,7 @@ PropertyMap Mod::Tag::properties() const
|
||||
PropertyMap properties;
|
||||
properties["TITLE"] = d->title;
|
||||
properties["COMMENT"] = d->comment;
|
||||
if(!(d->trackerName.isNull()))
|
||||
if(!(d->trackerName.isEmpty()))
|
||||
properties["TRACKERNAME"] = d->trackerName;
|
||||
return properties;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user