We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3283bd6 commit af165a7Copy full SHA for af165a7
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "botframework-directlinejs",
3
- "version": "0.9.3",
+ "version": "0.9.4",
4
"description": "client library for the Microsoft Bot Framework Direct Line 3.0 protocol",
5
"main": "built/directLine.js",
6
"types": "built/directLine.d.ts",
src/directLine.ts
@@ -593,7 +593,8 @@ export class DirectLine implements IBotConnection {
593
}
594
})
595
.do(result => {
596
- this.token = result.response.token;
+ if (!this.secret)
597
+ this.token = result.response.token;
598
this.streamUrl = result.response.streamUrl;
599
600
.map(_ => null)
0 commit comments