1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00

check still for empty string

This commit is contained in:
Soner Sayakci 2022-12-06 12:19:18 +00:00
parent 0a2cba647c
commit 9e9e9fbef9
No known key found for this signature in database

View File

@ -299,7 +299,7 @@ func listen(handler http.Handler) {
var s4, s6, sSocket *http.Server var s4, s6, sSocket *http.Server
// IPv4 // IPv4
if config.Server.ListenIpV4 != "-" { if config.Server.ListenIpV4 != "-" && config.Server.ListenIpV4 != "" {
bindString4 := config.Server.ListenIpV4 + ":" + strconv.Itoa(config.Server.Port) bindString4 := config.Server.ListenIpV4 + ":" + strconv.Itoa(config.Server.Port)
s4 = &http.Server{ s4 = &http.Server{
Handler: handler, Handler: handler,
@ -310,7 +310,7 @@ func listen(handler http.Handler) {
} }
// IPv6 // IPv6
if config.Server.ListenIpV6 != "-" { if config.Server.ListenIpV6 != "-" && config.Server.ListenIpV6 != "" {
bindString6 := "[" + config.Server.ListenIpV6 + "]:" + strconv.Itoa(config.Server.Port) bindString6 := "[" + config.Server.ListenIpV6 + "]:" + strconv.Itoa(config.Server.Port)
s6 = &http.Server{ s6 = &http.Server{
Handler: handler, Handler: handler,