mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
fix(Google Sheet Node): Fix issue with null values and "Use Header Names as JSON Paths" option (#3395)
* fixed Google Sheet 'Use Header Names as JSON Paths' issue when input data contains null values. https://community.n8n.io/t/error-cannot-read-properties-of-null-reading-tostring/14385/2 * ⚡ Update URLs to n8n.io API (#3391) * fix(core): Fix migrations on non-public Postgres schema (#3356) * 🐛 Fix UM migration * ⚡ Account for schema in `search_path` * 🔥 Remove unneeded schema refs * 🧪 Account for alt schema in DB testing * ⚡ Add schema to `IncreaseTypeVarcharLimit` * ⚡ Set `search_path` in every migration * ⚡ Set `search_path` in down migrations * refactor(core): Improve error message * feat(RabbitMQ Trigger Node): Make message acknowledgement and parallel processing configurable (#3385) * feat(RabbitMQ Trigger Node): Make message acknowledgement and concurrent processing configurable * ⚡ Make sure that messages do not get executed multiple times * 👕 Fix lint issue * 🐛 Fix issue that for manual executions in "own" mode messages got know acknowledged * ⚡ Increment count now that console.log got removed * ⚡ Improvements * ⚡ Fix default value * ⚡ Improve display name * fix(Gmail Node): Fix sending attachments when filesystem mode is used (#3396) * ⚡ Minor improvement Co-authored-by: Taha Sönmez <mtssonmez@gmail.com> Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com> Co-authored-by: Jan Oberhauser <janober@users.noreply.github.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
This commit is contained in:
parent
3a09da92be
commit
fbf60199d9
|
@ -503,8 +503,9 @@ export class GoogleSheet {
|
||||||
inputData.forEach((item) => {
|
inputData.forEach((item) => {
|
||||||
rowData = [];
|
rowData = [];
|
||||||
keyColumnOrder.forEach((key) => {
|
keyColumnOrder.forEach((key) => {
|
||||||
if (usePathForKeyRow && (get(item, key) !== undefined)) { //match by key path
|
const value = get(item, key) as string;
|
||||||
rowData.push(get(item, key)!.toString());
|
if (usePathForKeyRow && value !== undefined && value !== null) { //match by key path
|
||||||
|
rowData.push(value!.toString());
|
||||||
} else if (!usePathForKeyRow && item.hasOwnProperty(key) && item[key] !== null && item[key] !== undefined) { //match by exact key name
|
} else if (!usePathForKeyRow && item.hasOwnProperty(key) && item[key] !== null && item[key] !== undefined) { //match by exact key name
|
||||||
rowData.push(item[key]!.toString());
|
rowData.push(item[key]!.toString());
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue