Fixed incorrect default port

This commit is contained in:
Joshua Barretto 2025-04-22 17:13:00 +01:00
parent c5c8e5d72a
commit d602984fbd

View file

@ -124,7 +124,7 @@ async fn main() {
let sock = args
.sock
.as_deref()
.unwrap_or("0.0.0.0:4000")
.unwrap_or("0.0.0.0:3000")
.parse()
.unwrap();
if let (Some(cert), Some(key)) = (args.cert, args.key) {