Skip to content

Commit

Permalink
remove verifyBotFramework() because it is causing runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
lastcoolnameleft committed Feb 21, 2017
1 parent dd52d6f commit d295795
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 d295795

Please sign in to comment.