CLICKUP: "attachment url" value sometime is (empty/invalid)?

description:
CLICKUP: variable “attachment url” is sometimes empty (intermitent. when testing is available. when published, most of times it failed).
VAR: Task Created > task > attachments 0 url
image

temporary workaround:
generate the URL manually.

image

complete flow

CODE #remove “extension” from value to add in the url

export const code = async (inputs) => {
const fileName = inputs.a_id;
const nameWithoutExtension = fileName.split(‘.’).slice(0, -1).join(‘.’);
return (nameWithoutExtension);
};