From c7a12cbdd3a17196fabedfa6b6d7ab70e1a51439 Mon Sep 17 00:00:00 2001 From: Castor Regex Date: Sun, 31 Aug 2025 18:06:56 -0500 Subject: [PATCH] fix(forge): replace strings.SplitSeq for broader compatibility --- applyPatch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applyPatch.go b/applyPatch.go index 2124acc..f142733 100644 --- a/applyPatch.go +++ b/applyPatch.go @@ -116,7 +116,7 @@ func doRegister(newurl string) error { } test := strings.TrimSpace(string(body)) - for line := range strings.SplitSeq(test, "\n") { + for _, line := range strings.Split(test, "\n") { line = strings.TrimSpace(line) log.Info("server returned:", line) }