From 66225917fee060abbda3a058cfacd6f5ac1c0fd3 Mon Sep 17 00:00:00 2001 From: mercury Date: Sat, 16 Nov 2024 16:45:36 +0400 Subject: [PATCH] fix ip menu --- app/bot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bot.php b/app/bot.php index 9b89e02..b160697 100644 --- a/app/bot.php +++ b/app/bot.php @@ -4545,7 +4545,7 @@ DNS-over-HTTPS with IP: public function denyList($page = 0, $white = 0) { - $text = 'Menu -> IP -> ' . ($white ? 'white' : 'deny') . ' list'; + $text = 'Menu -> IP -> ' . ($white ? 'ignore' : 'block') . 'list'; $domains = $this->getPacConf()[$white ? 'white' : 'deny'] ?: []; $all = (int) ceil(count($domains) / $this->limit); $page = min($page, $all - 1);