Skip to content

Commit

Permalink
Merge pull request #4 from lastcoolnameleft/master
Browse files Browse the repository at this point in the history
remove verifyBotFramework() because it is causing runtime error
  • Loading branch information
danmarshall authored Feb 22, 2017
2 parents dd52d6f + d295795 commit 494a1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ bot.dialog('/', function (session) {
var server = restify.createServer();

// Handle Bot Framework messages
server.post('/api/messages', connector.verifyBotFramework(), connector.listen());
server.post('/api/messages', connector.listen());

// Serve a static web page
server.get(/.*/, restify.serveStatic({
Expand Down

0 comments on commit 494a1ea

Please sign in to comment.