From cf172c0d47b8a92b262f78d9a13e3b8d5b3ecfb7 Mon Sep 17 00:00:00 2001 From: roboogg133 Date: Mon, 4 Aug 2025 22:40:19 -0300 Subject: [PATCH] changed the default sync url to https://servidordomal.fun/index.db --- cmd/packets/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/packets/main.go b/cmd/packets/main.go index e665ebe..d1d70a6 100644 --- a/cmd/packets/main.go +++ b/cmd/packets/main.go @@ -270,9 +270,9 @@ func main() { } if len(os.Args) < 3 { - fmt.Println("Starting to sync with https://servidordomal.fun/mirror/index.db") - if err := Sync("https://servidordomal.fun/mirror/index.db"); err != nil { - fmt.Println("failed to sync with https://servidordomal.fun/mirror/index.db : ", err) + fmt.Println("Starting to sync with https://servidordomal.fun/index.db") + if err := Sync("https://servidordomal.fun/index.db"); err != nil { + fmt.Println("failed to sync with https://servidordomal.fun/index.db : ", err) return } fmt.Println("Sucessifully sync!")