sync recovery fixes

This commit is contained in:
zadam
2019-12-24 16:00:31 +01:00
parent a155b6e8d5
commit 474baa7d95
3 changed files with 18 additions and 14 deletions

View File

@@ -54,7 +54,7 @@ function sanitizeSql(str) {
}
function sanitizeSqlIdentifier(str) {
return str.replace(/[A-Za-z0-9_]/g, "");
return str.replace(/[^A-Za-z0-9_]/g, "");
}
function prepareSqlForLike(prefix, str, suffix) {