From 3cf89c41727bab5f9389c84c1b40cb04d8d2219e Mon Sep 17 00:00:00 2001 From: WorldObservationLog Date: Fri, 28 Nov 2025 10:02:45 +0800 Subject: [PATCH] fix: the ready value is incorrect when there is no account --- main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.go b/main.go index c1f59c7..48c7d77 100644 --- a/main.go +++ b/main.go @@ -508,6 +508,9 @@ func main() { for _, inst := range instancesInFile { go WrapperStart(inst.Id) } + } else { + ShouldStartInstances = 0 + Ready = true } log.Printf("wrapperManager running at %s:%d", *host, *port)