1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00

Fixing issue discovered by test case.

This commit is contained in:
mike12345567 2021-09-27 13:17:31 +01:00
parent 009f30b5cc
commit 704c889151

View file

@ -99,11 +99,13 @@ module PostgresModule {
async function internalQuery(client: any, query: SqlQuery) {
// need to handle a specific issue with json data types in postgres,
// new lines inside the JSON data will break it
const matches = query.sql.match(JSON_REGEX)
if (matches && matches.length > 0) {
for (let match of matches) {
const escaped = escapeDangerousCharacters(match)
query.sql = query.sql.replace(match, escaped)
if (query && query.sql) {
const matches = query.sql.match(JSON_REGEX)
if (matches && matches.length > 0) {
for (let match of matches) {
const escaped = escapeDangerousCharacters(match)
query.sql = query.sql.replace(match, escaped)
}
}
}
try {