From cc7db8c441b4236ab0c074005ccc0515c394dc8f Mon Sep 17 00:00:00 2001 From: jabuxas Date: Fri, 6 Sep 2024 16:43:22 -0300 Subject: [PATCH] fix: server wouldnt bind to any port after generate_config.sh --- abyss.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abyss.go b/abyss.go index e49c570..a604af9 100644 --- a/abyss.go +++ b/abyss.go @@ -43,7 +43,7 @@ func main() { app.filesDir = "./files" } - if app.port == "" { + if app.port == ":" { slog.Info("running on default port") app.port = ":3235" } else {