Skip to content

Commit 70e7b94

Browse files
committed
fix private isEocComingFromParent in dialogHelper.ts
1 parent c01518d commit 70e7b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/botbuilder-dialogs/src/dialogHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ function getActiveDialogContext(dialogContext: DialogContext): DialogContext {
9191
function isEocComingFromParent(context: TurnContext): boolean {
9292
// To determine the direction we check callerId property which is set to the parent bot
9393
// by the BotFrameworkHttpClient on outgoing requests.
94-
return !(!!context.activity.callerId);
94+
return !!context.activity.callerId;
9595
}

0 commit comments

Comments
 (0)