From f96ea44fe906dc69d2842e2934cf0a1ac0302d7d Mon Sep 17 00:00:00 2001 From: xiaoxuan6 <1527736751@qq.com> Date: Wed, 11 Sep 2024 17:58:16 +0800 Subject: [PATCH] fix: Update deeplx --- deeplx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deeplx.go b/deeplx.go index 0fb4d03..9de34e8 100644 --- a/deeplx.go +++ b/deeplx.go @@ -52,9 +52,9 @@ func fetchUri() string { targetUrls = append(targetUrls, string(line)) } } + urls = append(urls, targetUrls...) } - urls = append(urls, targetUrls...) randomIndex := rand.Intn(len(urls)) return urls[randomIndex] }