mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(HTTP Request Node): Fix issue with requests that return null (#3498)
* ⚡ fix * ⚡ Remove null values at node level * 🔥 Remove unused imports * ⚡ Small change Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { INodeExecutionData } from "n8n-workflow";
|
||||
|
||||
export const replaceNullValues = (item: INodeExecutionData) => {
|
||||
if (item.json === null) {
|
||||
item.json = {};
|
||||
}
|
||||
return item;
|
||||
};
|
||||
Reference in New Issue
Block a user