mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(Notion Node): Block with text results in a body validation error (#8622)
This commit is contained in:
@@ -307,7 +307,7 @@ export function formatBlocks(blocks: IDataObject[]) {
|
||||
...(block.type === 'to_do' ? { checked: block.checked } : {}),
|
||||
...(block.type === 'image' ? { type: 'external', external: { url: block.url } } : {}),
|
||||
// prettier-ignore,
|
||||
...(!['to_do', 'image'].includes(block.type as string) ? getTextBlocks(block) : {}),
|
||||
...(!['image'].includes(block.type as string) ? getTextBlocks(block) : {}),
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user