From 9a1c28f6be5178259a898e9ae88b5fbacb0f7d02 Mon Sep 17 00:00:00 2001 From: Mark Headd Date: Wed, 15 Jun 2011 12:53:01 -0400 Subject: [PATCH] Fixed http port mismatch bug --- lib/smsified.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/smsified.js b/lib/smsified.js index e9f1376..f43c91b 100644 --- a/lib/smsified.js +++ b/lib/smsified.js @@ -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 }; diff --git a/package.json b/package.json index 5293a8b..a589d37 100644 --- a/package.json +++ b/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 (http://smsified.com)", "main": "./lib/smsified",