Skip to content

Commit 4866f9e

Browse files
committed
Updated LKG build and package.json version.
1 parent 7b87f85 commit 4866f9e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Node/lib/Message.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var Message = (function () {
4747
return this;
4848
};
4949
Message.randomPrompt = function (prompts) {
50-
var i = Math.round(Math.random() * prompts.length);
50+
var i = Math.floor(Math.random() * prompts.length);
5151
return prompts[i];
5252
};
5353
Message.composePrompt = function (ses, prompts, args) {

Node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "botbuilder",
33
"author": "Microsoft Corp.",
44
"description": "Bot Builder is a dialog system for building rich bots on virtually any platform.",
5-
"version": "0.9.0",
5+
"version": "0.9.1",
66
"license": "MIT",
77
"keywords": [
88
"botbuilder",

0 commit comments

Comments
 (0)