Bug Description
I had a workflow which did update the note title when it was empty after a specific delay (60 secs). So my workflow was something like
- Trigger: create record (note)
- Delay: 60 seconds
- Update record: a null update to refetch the content of the note body, which should now be populated
- Filter: title = is empty
- Serverless function: javascript code to take the first 40 characters from the note body (step 3)
- Update record: update note title with output of serverless function (step 5 output).
Since upgrading to 1.11 the null update (step 3) is not returning the note body, so the automation fails entirely
Expected behavior
The update record step should give me the note body which is (90% chance) populated after 60 seconds