Merge pull request #3597 from bepvte/fix-ipv6

Fix format of IPv6 URI
This commit is contained in:
Pavel Djundik 2019-12-16 20:33:22 +02:00 committed by GitHub
commit f0b0c53536
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -154,6 +154,10 @@ module.exports = function(options = {}) {
const protocol = Helper.config.https.enable ? "https" : "http";
const address = server.address();
if (address.family === "IPv6") {
address.address = "[" + address.address + "]";
}
log.info(
"Available at " +
colors.green(`${protocol}://${address.address}:${address.port}/`) +