botbuilder
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -147,3 +147,3 @@ var __extends = (this && this.__extends) || function (d, b) { | ||
} | ||
if (match) { | ||
if (match && match.handler) { | ||
session.dialogData[consts.Data.Group] = match.groupId; | ||
@@ -150,0 +150,0 @@ session.dialogData[consts.Data.Intent] = topIntent.intent; |
@@ -161,6 +161,6 @@ var __extends = (this && this.__extends) || function (d, b) { | ||
if (retry === void 0) { retry = false; } | ||
if (retry && typeof args.retryPrompt === 'object') { | ||
if (retry && typeof args.retryPrompt === 'object' && !Array.isArray(args.retryPrompt)) { | ||
session.send(args.retryPrompt); | ||
} | ||
else if (typeof args.prompt === 'object') { | ||
else if (typeof args.prompt === 'object' && !Array.isArray(args.prompt)) { | ||
session.send(args.prompt); | ||
@@ -167,0 +167,0 @@ } |
@@ -5,3 +5,3 @@ { | ||
"description": "Bot Builder is a dialog system for building rich bots on virtually any platform.", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"license": "MIT", | ||
@@ -23,2 +23,3 @@ "keywords": [ | ||
"dependencies": { | ||
"async": "^1.5.2", | ||
"chrono-node": "^1.1.3", | ||
@@ -29,8 +30,8 @@ "node-uuid": "^1.4.7", | ||
}, | ||
"devDependencies": { | ||
"mocha": "^2.4.5" | ||
}, | ||
"scripts": { | ||
"test": "mocha tests/*.js" | ||
"devDependencies": { | ||
"mocha": "^2.4.5" | ||
}, | ||
"scripts": { | ||
"test": "mocha tests/*.js" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
242662
5
+ Addedasync@^1.5.2
+ Addedasync@1.5.2(transitive)