mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
Add functionality back to Node
This commit is contained in:
parent
94f79f9a61
commit
7843c59ab4
|
@ -216,7 +216,10 @@ export class Raindrop implements INodeType {
|
||||||
};
|
};
|
||||||
delete updateFields.collectionId;
|
delete updateFields.collectionId;
|
||||||
}
|
}
|
||||||
|
if (updateFields.pleaseParse === true) {
|
||||||
|
body.pleaseParse = {};
|
||||||
|
delete updateFields.pleaseParse;
|
||||||
|
}
|
||||||
if (updateFields.tags) {
|
if (updateFields.tags) {
|
||||||
body.tags = (updateFields.tags as string).split(',').map(tag => tag.trim()) as string[];
|
body.tags = (updateFields.tags as string).split(',').map(tag => tag.trim()) as string[];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue