fix(util): fix return code in plist parser

This commit is contained in:
Oleg Shparber
2026-02-18 10:38:14 +02:00
parent 5a5eef9bfa
commit 13cb55e241
+1 -1
View File
@@ -51,7 +51,7 @@ bool Plist::read(const QString &fileName)
insert(key, value);
}
return m_hasError;
return !m_hasError;
}
bool Plist::hasError() const