diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a5fc9420..df9545a67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Added - [main] Added End-to-End tests using Spectron in PR [1696](https://github.com/microsoft/BotFramework-Emulator/pull/1696) - [main] New Conversation: send a single conversation update activity including bot and user as members added [1709](https://github.com/microsoft/BotFramework-Emulator/pull/1709) +- [app] Consolidated application state store and removed the need for explicit state synchronization between the main and renderer processes in PR [1721](https://github.com/microsoft/BotFramework-Emulator/pull/1721) ## Fixed - [main] Fixed bug where opening a chat via URL was sending two conversation updates in PR [1735](https://github.com/microsoft/BotFramework-Emulator/pull/1735) +- [main] Fixed an issue where the Emulator was incorrectly sending the conversation id instead of an emulated OAuth token in PR [1738](https://github.com/microsoft/BotFramework-Emulator/pull/1738) ## v4.5.2 - 2019 - 07 - 17 ## Fixed diff --git a/packages/app/main/src/commands/oauthCommands.ts b/packages/app/main/src/commands/oauthCommands.ts index 829eb2467..641e3b3ea 100644 --- a/packages/app/main/src/commands/oauthCommands.ts +++ b/packages/app/main/src/commands/oauthCommands.ts @@ -51,7 +51,7 @@ export class OauthCommands { if (!convo) { throw new Error(`oauth:send-token-response: Conversation ${conversationId} not found.`); } - await convo.sendTokenResponse(connectionName, conversationId, false); + await convo.sendTokenResponse(connectionName, token, false); } // ---------------------------------------------------------------------------