fix: server wouldnt bind to any port after generate_config.sh

This commit is contained in:
jabuxas 2024-09-06 16:43:22 -03:00
parent 3c8224cb4d
commit cc7db8c441

View File

@ -43,7 +43,7 @@ func main() {
app.filesDir = "./files" app.filesDir = "./files"
} }
if app.port == "" { if app.port == ":" {
slog.Info("running on default port") slog.Info("running on default port")
app.port = ":3235" app.port = ":3235"
} else { } else {