1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

PIM: Fix typo, missing brackets around if

Signed-off-by: Juraj Oravec <sgd.orava@gmail.com>
This commit is contained in:
Juraj Oravec 2019-12-30 16:24:00 +01:00
parent be4d55795f
commit 52370301aa
No known key found for this signature in database
GPG Key ID: 63ACB65056BC8D07

View File

@ -251,8 +251,9 @@ QString PIM_Handler::matchingJsTable() const
}
}
if (!values.isEmpty())
if (!values.isEmpty()) {
values = values.left(values.size() - 1);
}
return QSL("{ %1 }").arg(values);
}