We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 484d9ea commit 64159e8Copy full SHA for 64159e8
components/slack/actions/find-message/find-message.mjs
@@ -63,7 +63,7 @@ export default {
63
do {
64
const { messages } = await this.slack.searchMessages(params);
65
matches.push(...messages.matches);
66
- if (messages.length >= this.maxResults) {
+ if (matches.length >= this.maxResults) {
67
break;
68
}
69
hasMore = messages?.length;
0 commit comments