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 d3b6acb commit c0d9c1fCopy full SHA for c0d9c1f
server/src/channels/base.channel.ts
@@ -36,12 +36,12 @@ export class BaseChannel {
36
recipient: {
37
id: this.contactId,
38
},
39
+ testBot: isTest || false,
40
data: data || false,
41
text: message,
42
type: 'message',
43
id: uid,
44
channelId: this.channelType,
- isTest,
45
serviceUrl: PUBLIC_DOMAIN,
46
47
})
server/src/services/flows.service.ts
@@ -280,7 +280,7 @@ export class FlowService {
280
flow = await db.query.flows.findFirst({
281
where: and(
282
eq(flows.id, channel?.flowId),
283
- isNotNull(flow.publishAt)
+ isNotNull(flows.publishAt)
284
),
285
});
286
}
0 commit comments