Merge branch 'master' into builder-store-conversions-pc
This commit is contained in:
commit
807fea911f
|
@ -174,7 +174,9 @@ class QueryRunner {
|
||||||
}
|
}
|
||||||
|
|
||||||
// needs to an array for next step
|
// needs to an array for next step
|
||||||
if (!Array.isArray(rows)) {
|
if (rows === null) {
|
||||||
|
rows = []
|
||||||
|
} else if (!Array.isArray(rows)) {
|
||||||
rows = [rows]
|
rows = [rows]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue