From 83f91fdedac7c27a98b04ece7ee4fc161d0e3187 Mon Sep 17 00:00:00 2001 From: SXP-Simon Date: Thu, 26 Feb 2026 11:52:57 +0800 Subject: [PATCH] =?UTF-8?q?fix(dispatcher):=20=E4=BF=AE=E5=A4=8D=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=AE=9A=E6=97=B6=E5=88=86=E6=9E=90=E6=8A=A5=E5=91=8A?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E4=B8=8A=E4=BC=A0=E7=BE=A4=E7=9B=B8=E5=86=8C?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98=20(=E8=A1=A5=E5=85=A8=E7=BC=BA?= =?UTF-8?q?=E5=A4=B1=E7=9A=84=20album=5Fname=20=E5=8F=82=E6=95=B0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/infrastructure/reporting/dispatcher.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/infrastructure/reporting/dispatcher.py b/src/infrastructure/reporting/dispatcher.py index 9166e12..c4db150 100644 --- a/src/infrastructure/reporting/dispatcher.py +++ b/src/infrastructure/reporting/dispatcher.py @@ -243,7 +243,9 @@ class ReportDispatcher: album_id = None if album_name and hasattr(adapter, "find_album_id"): album_id = await adapter.find_album_id(group_id, album_name) - await adapter.upload_group_album(group_id, file_path, album_id=album_id) + await adapter.upload_group_album( + group_id, file_path, album_id=album_id, album_name=album_name + ) except Exception as e: logger.warning(f"群相册上传失败 (群 {group_id}): {e}")