Skip to content

Commit

Permalink
Fixed double semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
ashoksahoo committed Apr 20, 2015
1 parent ac9d9be commit 7b1e56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nexmo.js
Expand Up @@ -133,7 +133,7 @@ function sendMessage(data, callback) {
} else if (!data.to) {
sendError(callback, new Error(ERROR_MESSAGES.to));
} else {
var path = {host:msgpath.host,path:msgpath.path};;
var path = {host:msgpath.host,path:msgpath.path};
path.path+= '?' + querystring.stringify(data);
log('sending message from ' + data.from + ' to ' + data.to + ' with message ' + data.text);
sendRequest(path, 'POST', function(err, apiResponse) {
Expand Down

0 comments on commit 7b1e56c

Please sign in to comment.