From d15ff5c4c49dfb7afa59e848362e5b52ffc548b4 Mon Sep 17 00:00:00 2001 From: liuwei Date: Mon, 26 Jan 2026 08:59:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A9=E6=B0=94=E4=B8=B0=E5=AF=8C=E4=B8=80?= =?UTF-8?q?=E4=B8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/weather/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/weather/main.py b/plugins/weather/main.py index 9743f65..70004a7 100644 --- a/plugins/weather/main.py +++ b/plugins/weather/main.py @@ -445,7 +445,7 @@ class WeatherPlugin(MessagePluginInterface): cloud = int(data.get('cloud', 50)) sunset = data.get('sunset', '') if cloud < 20 and "晴" in text_day: - tips.append(f"� 傍晚{sunset}左右可能有美丽的晚霞哦。") + tips.append(f"🌄 傍晚{sunset}左右可能有美丽的晚霞哦。") return tips @@ -598,7 +598,7 @@ class WeatherPlugin(MessagePluginInterface): lines.append(f"💧 湿度{humidity}% | 🌬️ {wind_dir} {wind_scale}级 | 👀 能见度{vis}km") if today: lines.append(f"🗓️ 今日 {text_day} | {t_min}~{t_max}℃") - lines.append(f"☀️ 日出{sunrise} | � 日落{sunset}") + lines.append(f"☀️ 日出{sunrise} | 🌄 日落{sunset}") lines.append(f"🔆 紫外线{uv} | 🌧️ 降水{precip}mm | ⏱️ 气压{pressure}hPa") if alerts: lines.append("")