From c288fc7349337f31d05f167519796a619fcb7a66 Mon Sep 17 00:00:00 2001 From: Kenji Fujita <300460+k44@users.noreply.github.com> Date: Fri, 20 Oct 2023 06:21:16 +0900 Subject: [PATCH] fix: use connectorClientOptions to create ConnectorFactory (#4420) (#4421) --- .../src/auth/parameterizedBotFrameworkAuthentication.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libraries/botframework-connector/src/auth/parameterizedBotFrameworkAuthentication.ts b/libraries/botframework-connector/src/auth/parameterizedBotFrameworkAuthentication.ts index 2c41eea4a7..d6e8f20dd9 100644 --- a/libraries/botframework-connector/src/auth/parameterizedBotFrameworkAuthentication.ts +++ b/libraries/botframework-connector/src/auth/parameterizedBotFrameworkAuthentication.ts @@ -123,7 +123,8 @@ export class ParameterizedBotFrameworkAuthentication extends BotFrameworkAuthent this.toChannelFromBotOAuthScope, this.toChannelFromBotLoginUrl, this.validateAuthority, - this.credentialsFactory + this.credentialsFactory, + this.connectorClientOptions ); return { @@ -188,7 +189,8 @@ export class ParameterizedBotFrameworkAuthentication extends BotFrameworkAuthent this.toChannelFromBotOAuthScope, this.toChannelFromBotLoginUrl, this.validateAuthority, - this.credentialsFactory + this.credentialsFactory, + this.connectorClientOptions ); }