Add functionality back to Node

This commit is contained in:
Tim Adler 2021-12-23 17:45:30 +01:00 committed by GitHub
parent 94f79f9a61
commit 7843c59ab4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -216,7 +216,10 @@ export class Raindrop implements INodeType {
};
delete updateFields.collectionId;
}
if (updateFields.pleaseParse === true) {
body.pleaseParse = {};
delete updateFields.pleaseParse;
}
if (updateFields.tags) {
body.tags = (updateFields.tags as string).split(',').map(tag => tag.trim()) as string[];
}