Skip to content

Commit

Permalink
fix private isEocComingFromParent in dialogHelper.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengum committed Mar 12, 2020
1 parent c01518d commit 70e7b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/botbuilder-dialogs/src/dialogHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@ function getActiveDialogContext(dialogContext: DialogContext): DialogContext {
function isEocComingFromParent(context: TurnContext): boolean {
// To determine the direction we check callerId property which is set to the parent bot
// by the BotFrameworkHttpClient on outgoing requests.
return !(!!context.activity.callerId);
return !!context.activity.callerId;
}

0 comments on commit 70e7b94

Please sign in to comment.