Skip to content

Commit 651765f

Browse files
Fixed missing field due to renaming variable
1 parent 32e30a3 commit 651765f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/slack-send.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ module.exports = async function slackSend(core) {
8787
}
8888

8989
// update message
90-
webResponses[index] = await web.chat.update({ tsVal, channel: channelId.trim(), text: message, ...(payload || {}) });
90+
webResponses[index] = await web.chat.update({ ts: tsVal, channel: channelId.trim(), text: message, ...(payload || {}) });
9191
} else {
9292
// post message
9393
webResponses[index] = await web.chat.postMessage({ channel: channelId.trim(), text: message, ...(payload || {}) });

0 commit comments

Comments
 (0)