From 8b47f915124ccd646aa64f1c06cc24454f9c4377 Mon Sep 17 00:00:00 2001 From: Artyom Bebroy Date: Wed, 6 May 2026 20:52:13 +0500 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20=D1=80=D0=B5?= =?UTF-8?q?=D0=B7=D1=83=D0=BB=D1=8C=D1=82=D0=B0=D1=82=D0=BE=D0=B2=20DPI=20?= =?UTF-8?q?(#13066)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/test zapret.ps1 | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/utils/test zapret.ps1 b/utils/test zapret.ps1 index 0abb418..70b9f63 100644 --- a/utils/test zapret.ps1 +++ b/utils/test zapret.ps1 @@ -894,13 +894,20 @@ try { foreach ($targetRes in $results) { $id = $targetRes.TargetId $provider = $targetRes.Provider - Add-Content $resultFile " Target: $id ($provider)" + $country = $targetRes.Country + if ($country) { + Add-Content $resultFile " Target: [$country] $id ($provider)" + } else { + Add-Content $resultFile " Target: $id ($provider)" + } foreach ($line in $targetRes.Lines) { $test = $line.TestLabel $code = $line.Code - $size = $line.SizeKB + $up = $line.UpKB + $down = $line.DownKB + $time = $line.Time $status = $line.Status - Add-Content $resultFile " ${test}: code=${code} size=${size} KB status=${status}" + Add-Content $resultFile " ${test}: code=${code} up=${up} KB down=${down} KB time=${time}s status=${status}" } } }