From bec1f4c10e40ae88f586412d28e63c4d7d3d1457 Mon Sep 17 00:00:00 2001 From: yandexru45 Date: Sun, 5 Apr 2026 15:51:24 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=81=D0=BE=D0=B2=D0=BC=D0=B5=D1=81=D1=82=D0=B8?= =?UTF-8?q?=D0=BC=D0=BE=D1=81=D1=82=D1=8C=20wget=20=D0=B2=20=D0=BF=D1=80?= =?UTF-8?q?=D0=BE=D0=B2=D0=B5=D1=80=D0=BA=D0=B5=20=D0=BF=D0=BE=D0=B4=D0=BF?= =?UTF-8?q?=D0=B8=D1=81=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- podkop/files/usr/lib/helpers.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/podkop/files/usr/lib/helpers.sh b/podkop/files/usr/lib/helpers.sh index dda8ea8..c16b938 100644 --- a/podkop/files/usr/lib/helpers.sh +++ b/podkop/files/usr/lib/helpers.sh @@ -432,7 +432,7 @@ download_subscription() { for attempt in $(seq 1 "$retries"); do if [ -n "$http_proxy_address" ]; then http_proxy="http://$http_proxy_address" https_proxy="http://$http_proxy_address" \ - wget -T "$timeout" -t 1 -O "$tmpfile" \ + wget -T "$timeout" -O "$tmpfile" \ --header "User-Agent: singbox/$sb_version" \ --header "X-HWID: $hwid" \ --header "X-Device-OS: OpenWrt Linux" \ @@ -442,7 +442,7 @@ download_subscription() { --header "X-Device-Locale: EN" \ "$url" else - wget -T "$timeout" -t 1 -O "$tmpfile" \ + wget -T "$timeout" -O "$tmpfile" \ --header "User-Agent: singbox/$sb_version" \ --header "X-HWID: $hwid" \ --header "X-Device-OS: OpenWrt Linux" \ @@ -484,7 +484,7 @@ check_subscription_connectivity() { for attempt in $(seq 1 "$retries"); do if [ -n "$http_proxy_address" ]; then http_proxy="http://$http_proxy_address" https_proxy="http://$http_proxy_address" \ - wget -q -T "$timeout" -t 1 -O /dev/null \ + wget -q -T "$timeout" -O /dev/null \ --header "User-Agent: singbox/$sb_version" \ --header "X-HWID: $hwid" \ --header "X-Device-OS: OpenWrt Linux" \ @@ -494,7 +494,7 @@ check_subscription_connectivity() { --header "X-Device-Locale: EN" \ "$url" && return 0 else - wget -q -T "$timeout" -t 1 -O /dev/null \ + wget -q -T "$timeout" -O /dev/null \ --header "User-Agent: singbox/$sb_version" \ --header "X-HWID: $hwid" \ --header "X-Device-OS: OpenWrt Linux" \