dialogflow / dialogflow-nodejs-client

Node.js SDK for Dialogflow
Apache License 2.0
659 stars 287 forks source link

delete context issue #109

Open abhikchakraborty opened 6 years ago

abhikchakraborty commented 6 years ago

Hi looks like there is a small issue on delete context end point

https://github.com/dialogflow/dialogflow-nodejs-client/blob/master/module/delete_contexts_request.js#L47

var contextPath = this.context ? '/' + context : '';

Should be

var contextPath = this.context ? '/' + this.context : '';

Could you please do a new release with the fix. Thanks !!

abhikchakraborty commented 6 years ago

Just saw that there is a PR https://github.com/dialogflow/dialogflow-nodejs-client/pull/91 on this. It would be great to have this working.