mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-12 07:42:41 +02:00
Fix listening url log with ipv6 host
This commit is contained in:
+8
-2
@@ -11,6 +11,7 @@ const axios = require('axios')
|
|||||||
const { version } = require('../package.json')
|
const { version } = require('../package.json')
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
|
const is = require('./libs/requestIp/isJs')
|
||||||
const fileUtils = require('./utils/fileUtils')
|
const fileUtils = require('./utils/fileUtils')
|
||||||
const { toNumber } = require('./utils/index')
|
const { toNumber } = require('./utils/index')
|
||||||
const Logger = require('./Logger')
|
const Logger = require('./Logger')
|
||||||
@@ -419,8 +420,13 @@ class Server {
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
this.server.listen(this.Port, this.Host, () => {
|
this.server.listen(this.Port, this.Host, () => {
|
||||||
if (this.Host) Logger.info(`Listening on http://${this.Host}:${this.Port}`)
|
if (this.Host) {
|
||||||
else Logger.info(`Listening on port :${this.Port}`)
|
let host = this.Host
|
||||||
|
if (is.ipv6(host)) {
|
||||||
|
host = '[' + host + ']'
|
||||||
|
}
|
||||||
|
Logger.info(`Listening on http://${host}:${this.Port}`)
|
||||||
|
} else Logger.info(`Listening on port :${this.Port}`)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user