mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
Fixed a typo.
This commit is contained in:
@@ -85,7 +85,7 @@ bool EntryConfig::load(const Entry *entry)
|
||||
|
||||
bool isOk = false;
|
||||
QVariant v = QJson::Parser().parse(s.toUtf8(), &isOk);
|
||||
if (!isOk || !v.type() == QVariant::Map)
|
||||
if (!isOk || v.type() != QVariant::Map)
|
||||
return false;
|
||||
|
||||
QJson::QObjectHelper::qvariant2qobject(v.toMap(), this);
|
||||
|
||||
Reference in New Issue
Block a user