From 7377460ba0516655bef65b819e115d13afa492ff Mon Sep 17 00:00:00 2001 From: xboard Date: Wed, 8 Oct 2025 10:26:26 +0800 Subject: [PATCH] fix(telegram): correct traffic usage description in notification --- plugins/Telegram/Plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Telegram/Plugin.php b/plugins/Telegram/Plugin.php index b04ffbd..01812f9 100644 --- a/plugins/Telegram/Plugin.php +++ b/plugins/Telegram/Plugin.php @@ -93,7 +93,7 @@ class Plugin extends AbstractPlugin if ($plan) { $TGmessage .= "📦 套餐: `{$plan->name}`\n"; - $TGmessage .= "📊 流量: `{$remaining_traffic}G / {$transfer_enable}G` (已用/总计)\n"; + $TGmessage .= "📊 流量: `{$remaining_traffic}G / {$transfer_enable}G` (剩余/总计)\n"; $TGmessage .= "⬆️⬇️ 已用: `{$u}G / {$d}G`\n"; $TGmessage .= "⏰ 到期: `{$expired_at}`\n"; } else {