From 7e545cef95808e7f5f1dfd58025c3ccb7f38b291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Sun, 10 Dec 2023 09:29:17 +0800 Subject: [PATCH] :bug: Fix a bug. --- utils/callback.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/callback.go b/utils/callback.go index 306b68f..db1ca59 100644 --- a/utils/callback.go +++ b/utils/callback.go @@ -35,7 +35,7 @@ func SetCallback(userHost string) { } port := 19099 - if userHost != "" { + if userHost != "" && userHost != "auto" { uh := strings.Split(strings.TrimSpace(userHost), ":") host = uh[0] if len(uh) == 2 {