Skip to content

Commit 12fde84

Browse files
authored
Merging pull request #16265
* find-message fix * pnpm-lock.yaml
1 parent f78b76a commit 12fde84

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "slack-find-message",
55
name: "Find Message",
66
description: "Find a Slack message. [See the documentation](https://api.slack.com/methods/search.messages)",
7-
version: "0.0.24",
7+
version: "0.0.25",
88
type: "action",
99
props: {
1010
slack,
@@ -66,7 +66,7 @@ export default {
6666
if (matches.length >= this.maxResults) {
6767
break;
6868
}
69-
hasMore = messages?.length;
69+
hasMore = messages.matches?.length;
7070
params.page++;
7171
} while (hasMore);
7272

components/slack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/slack",
3-
"version": "0.9.3",
3+
"version": "0.9.4",
44
"description": "Pipedream Slack Components",
55
"main": "slack.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)