Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ public OAuthPrompt(string dialogId, OAuthPromptSettings settings, PromptValidato

if (hasTimedOut)
{
// if the token fetch request timesout, complete the prompt with no result.
return await dc.EndDialogAsync(cancellationToken).ConfigureAwait(false);
// if the token fetch request times out, complete the prompt with no result.
return await dc.EndDialogAsync(cancellationToken: cancellationToken).ConfigureAwait(false);
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ private static async Task<DialogTurnResult> Waterfall5_Step1(WaterfallStepContex
private static async Task<DialogTurnResult> Waterfall5_Step2(WaterfallStepContext stepContext, CancellationToken cancellationToken)
{
await stepContext.Context.SendActivityAsync(MessageFactory.Text("step2.2"), cancellationToken);
return await stepContext.EndDialogAsync(cancellationToken);
return await stepContext.EndDialogAsync(cancellationToken: cancellationToken);
}
}
}