Skip to content

Commit

Permalink
Fixed http port mismatch bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mheadd committed Jun 15, 2011
1 parent e0f6215 commit 9a1c28f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/smsified.js
Expand Up @@ -69,7 +69,7 @@ SMSified.prototype.makeApiCall = function(method, path, callback) {
// Set options for HTTP request.
var options = {
host : this.host,
port: 80,
port: 443,
path : path,
method : method
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "smsified",
"description": "A Node.js library for interaction with the SMSified API.",
"version": "1.0.3",
"version": "1.0.4",
"homepage": "http://smsified.com",
"author": "Mark Headd <mheadd@voxeo.com> (http://smsified.com)",
"main": "./lib/smsified",
Expand Down

0 comments on commit 9a1c28f

Please sign in to comment.