From 2c3d1e14ff8b93830237617b14d9dddd9ca81106 Mon Sep 17 00:00:00 2001 From: Stephen Booth Date: Wed, 9 Sep 2026 13:36:33 -0500 Subject: [PATCH] Improve string to ASF `BoolType` conversion (#1435) --- taglib/asf/asftag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taglib/asf/asftag.cpp b/taglib/asf/asftag.cpp index 9fd95964..1d37b83b 100644 --- a/taglib/asf/asftag.cpp +++ b/taglib/asf/asftag.cpp @@ -454,7 +454,7 @@ PropertyMap ASF::Tag::setProperties(const PropertyMap &props) addAttribute(name, str.toULongLong()); break; case Attribute::BoolType: - addAttribute(name, !str.isEmpty() && str != "0" && str.upper() != "TRUE"); + addAttribute(name, !str.isEmpty() && str != "0" && str.upper() != "FALSE"); break; case Attribute::GuidType: { ByteVector data;