3 Commits

Author SHA1 Message Date
Roman Shtylman
aa488f6e76 0.1.1 2013-10-22 15:57:36 -04:00
Roman Shtylman
f6618953f9 Merge pull request #20 from eagleeye/master
Do not call success callback right after error in request_url
2013-10-16 18:49:48 -07:00
Andrii Shumada
092d050fa0 Do not call success callback right after error in request_url 2013-10-16 12:05:37 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ var request = require('request');
var request_url = function(params, cb) {
request(params, function(err, res, body) {
if (err) {
cb(err);
return cb(err);
}
cb(null, body);

View File

@@ -2,7 +2,7 @@
"author": "Roman Shtylman <shtylman@gmail.com>",
"name": "localtunnel",
"description": "expose localhost to the world",
"version": "0.1.0",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "git://github.com/shtylman/localtunnel.git"