We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66cd547 commit 9b1b8cbCopy full SHA for 9b1b8cb
2 files changed
integrations/messenger/integration.definition.ts
@@ -8,7 +8,7 @@ import { actions } from './definitions/actions'
8
import { messages } from './definitions/channels/channel/messages'
9
10
export const INTEGRATION_NAME = 'messenger'
11
-export const INTEGRATION_VERSION = '5.1.1'
+export const INTEGRATION_VERSION = '5.1.2'
12
13
const commonConfigSchema = z.object({
14
downloadMedia: z
integrations/messenger/src/channels/comment-replies.ts
@@ -13,6 +13,11 @@ const commentReplies: bp.IntegrationProps['channels']['commentReplies'] = {
return
}
15
16
+ if (!ctx.configuration.replyToComments) {
17
+ logger.forBot().info('Comment replies are disabled in the configuration')
18
+ return
19
+ }
20
+
21
if (!id) {
22
logger.forBot().error('Comment ID is required to reply to comments')
23
0 commit comments