diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2018-09-04 17:21:01 -0700 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2018-09-06 14:14:12 -0700 |
commit | 471c40a1310d3ca0bc6d8c220c4c174543a8c510 (patch) | |
tree | b7d375601c158491735ca7fc8dde34757d8087c0 /lib/render-msg.js | |
parent | c6f15ea06c6c21c6ce2e19c04fdfc7fe815a6bc4 (diff) | |
download | patchfoo-471c40a1310d3ca0bc6d8c220c4c174543a8c510.tar.gz patchfoo-471c40a1310d3ca0bc6d8c220c4c174543a8c510.zip |
Fix IPv6 URL
Diffstat (limited to 'lib/render-msg.js')
-rw-r--r-- | lib/render-msg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js index d02497e..694f8d0 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -1184,7 +1184,7 @@ RenderMsg.prototype.npmPackages = function (cb) { singlePkg ? h('p', h('code', 'npm install --registry=' + - 'http://' + self.app.host + ':' + self.app.port + + self.app.baseUrl + '/npm-registry/' + encodeURIComponent(self.msg.key) + ' ' + singlePkgSpec), ) : '', |