Skip to content

Commit

Permalink
Fixed typo (dialogflowSessionClient)
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlanap-Google committed Jan 6, 2020
1 parent ef8edce commit 7bebb84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions skype/server.js
Expand Up @@ -18,7 +18,7 @@ const {ActivityTypes,
MessageFactory,
BotFrameworkAdapter} = require('botbuilder');
const protoToJson = require('../botlib/proto_to_json.js');
const dialgoflowSessionClient =
const dialogflowSessionClient =
require('../botlib/dialogflow_session_client.js');
const filterResponses = require('../botlib/filter_responses.js');
const express = require('express');
Expand All @@ -34,7 +34,7 @@ const projectId = 'Place dialogflow project id here';
const appId = 'Place Microsoft app id here';
const appPassword = 'Place Microsoft password here';

const sessionClient = new dialgoflowSessionClient(projectId);
const sessionClient = new dialogflowSessionClient(projectId);

// Create bot adapter, which defines how the bot sends and receives messages.
let adapter = new BotFrameworkAdapter({
Expand Down Expand Up @@ -163,4 +163,4 @@ async function convertToSkypeMessage(turnContext, responses){

module.exports = {
convertToSkypeMessage
};
};

0 comments on commit 7bebb84

Please sign in to comment.