When using await tape.RecordCommentOrReplyReply.create the silent parameter is not working. The notification still triggers when silent: true.
Here is how to replicate this bug:
- Create a comment on any app and get the comment id
- Create a script automation with the following:
await tape.RecordCommentOrReplyReply.create(commentId,
{
value: `Example comment.`
},
{ silent: true }
);
- Do a manual run on the automation. You will get a notification even though silent is true.
