Skip to content

Commit

Permalink
fix(ngrok): Generate http url
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rkr00t committed Feb 28, 2016
1 parent f6cbc65 commit eeea0b9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Empty file modified cli.js
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion lib/ngrok.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function createNgrokTunnel(flags) {
return reject(err);
}

resolve(url);
resolve(url.replace('https:', 'http:'));
});
});
}
2 changes: 1 addition & 1 deletion src/lib/ngrok.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function createNgrokTunnel(flags) {
return reject(err);
}

resolve(url);
resolve(url.replace('https:', 'http:'));
});
});
}

0 comments on commit eeea0b9

Please sign in to comment.