From 22c18915f54d9c8c7f884c4d6d239f9b40cb19ef Mon Sep 17 00:00:00 2001 From: = <=> Date: Tue, 26 Nov 2024 12:37:30 -0700 Subject: [PATCH] Changed url to point to new server --- fclauncher/https.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fclauncher/https.go b/fclauncher/https.go index 2b18781..a64bb2a 100644 --- a/fclauncher/https.go +++ b/fclauncher/https.go @@ -11,7 +11,7 @@ import ( const BlockSize = 1024 * 64 func HttpDownload(path string, out io.Writer, ctx context.Context) error { - res, err := http.Get("https://gitea.piwalker.net/fclauncher/" + path) + res, err := http.Get("https://fclauncher.piwalker.net/fclauncher/" + path) if err != nil { return err }