Skip to content

Commit

Permalink
Import fixes for adjustCapacityListener.private.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhand committed Jul 3, 2024
1 parent 06a5c75 commit 12a13bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const handler = async (

const isConversation =
(typeof isConversationValue === 'string' && isConversationValue === 'true') ||
Boolean(isConversationValue);
(typeof isConversationValue === 'boolean' && isConversationValue);

const handlerPath = Runtime.getFunctions()['channelCapture/channelCaptureHandlers'].path;
const channelCaptureHandlers = require(handlerPath) as ChannelCaptureHandlers;
Expand Down

0 comments on commit 12a13bf

Please sign in to comment.