parent
53767a5bed
commit
0bd722c426
|
@ -140,7 +140,7 @@ export const getWebAddress = (ip, port = '') => {
|
|||
let address = `http://${ip}`;
|
||||
|
||||
if (port) {
|
||||
if (ip.includes(':') && !isStandardWebPort) {
|
||||
if (ip.includes(':') && !ip.includes('[') && !isStandardWebPort) {
|
||||
address = `http://[${ip}]:${port}`;
|
||||
} else if (!isStandardWebPort) {
|
||||
address = `http://${ip}:${port}`;
|
||||
|
|
Loading…
Reference in New Issue