Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.
```
<your workflow>
```
That implies to any JSON output you would like to share with us.
Make sure that you have removed any sensitive information from your workflow and include dummy or pinned data with it!
Have you recently upgraded your n8n instance? If so, from what version and what your workspace ID?
Hey @nikwho , it sounds like workflows are running fine now. Still, could you share the codes that you have in the Code nodes that were failing, please?
None of the Code nodes were working even old code nodes in automations that have not been touched for some time.
const jsonData = JSON.parse(items[0].json.data);
// Extract the link to the .vtt file
const vttLink = jsonData.link;
// Return the link as output
return [
{
json: {
vttLink: vttLink,
}
}
];