Skip to content
This repository was archived by the owner on Dec 4, 2023. 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
@@ -1,3 +1,4 @@
MicrosoftAppId=
MicrosoftAppPassword=
server.port=3978
ConnectionName=
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private CompletableFuture<MessagingExtensionResponse> emailExtensionQuery(
.thenCompose(response -> {
if (response == null || StringUtils.isEmpty(response.getToken())) {
// There is no token, so the user has not signed in yet.
return tokenProvider.getOauthSignInLink(turnContext, connectionName)
return tokenProvider.getOAuthSignInLink(turnContext, connectionName)
.thenApply(link -> new MessagingExtensionResponse() {{
setComposeExtension(new MessagingExtensionResult() {{
setType("auth");
Expand Down