[DONE] Tape API client Reply creation not honoring silent flag

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:

  1. Create a comment on any app and get the comment id
  2. Create a script automation with the following:
await tape.RecordCommentOrReplyReply.create(commentId,
    {
        value: `Example comment.`
    },
    { silent: true }
);
  1. Do a manual run on the automation. You will get a notification even though silent is true.
1 Like

Hi @Luis,

thanks for your report. We checked in detail, and indeed this had been working for creating comments, but not for creating replies, as you stated.

The team squeezed in the fix immediately, as it was straight forward on our end. We just deployed an update to Tape that resolves the issue - could you confirm on your end?

Happy Sunday
Cheers
Tim

2 Likes

Yes is working perfectly now. Thanks for fixing it so fast.

1 Like