Merge pull request #1097 from TorstenDittmann/fix-false-boolean-properties

fix: save false values in database for filtering
This commit is contained in:
Eldad A. Fux
2021-04-20 16:52:09 +03:00
committed by GitHub
+3
View File
@@ -283,6 +283,9 @@ class MySQL extends Adapter
if (\is_array($prop['value'])) {
throw new Exception('Value can\'t be an array: '.\json_encode($prop['value']));
}
if (\is_bool($prop['value'])) {
$prop['value'] = (int) $prop['value'];
}
$st2->bindValue(':documentUid', $data['$id'], PDO::PARAM_STR);
$st2->bindValue(':documentRevision', $revision, PDO::PARAM_STR);