We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7440f6a commit d400fccCopy full SHA for d400fcc
syncthingconnector/syncthingconfig.cpp
@@ -87,9 +87,9 @@ QString SyncthingConfig::locateHttpsCertificate()
87
*/
88
static QJsonValue xmlValueToJsonValue(QStringView value)
89
{
90
- if (value == QLatin1StringView("true")) {
+ if (value == QLatin1String("true")) {
91
return QJsonValue(true);
92
- } else if (value == QLatin1StringView("false")) {
+ } else if (value == QLatin1String("false")) {
93
return QJsonValue(false);
94
}
95
auto isNumber = false;
0 commit comments