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 c01518d commit 70e7b94Copy full SHA for 70e7b94
libraries/botbuilder-dialogs/src/dialogHelper.ts
@@ -91,5 +91,5 @@ function getActiveDialogContext(dialogContext: DialogContext): DialogContext {
91
function isEocComingFromParent(context: TurnContext): boolean {
92
// To determine the direction we check callerId property which is set to the parent bot
93
// by the BotFrameworkHttpClient on outgoing requests.
94
- return !(!!context.activity.callerId);
+ return !!context.activity.callerId;
95
}
0 commit comments