Skip to content

Commit 64159e8

Browse files
committed
fix
1 parent 484d9ea commit 64159e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/slack/actions/find-message/find-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default {
6363
do {
6464
const { messages } = await this.slack.searchMessages(params);
6565
matches.push(...messages.matches);
66-
if (messages.length >= this.maxResults) {
66+
if (matches.length >= this.maxResults) {
6767
break;
6868
}
6969
hasMore = messages?.length;

0 commit comments

Comments
 (0)