feat: 新增 show_report_caption 选项,可关闭报告发送时的文字前缀

This commit is contained in:
SXP-Simon
2026-07-21 16:22:20 +08:00
parent eb8da860d5
commit 938ae5ddaf
5 changed files with 19 additions and 4 deletions
+1 -1
View File
@@ -649,7 +649,7 @@ class GroupDailyAnalysis(Star):
)
if image_url:
caption = TraceContext.make_report_caption()
caption = TraceContext.make_report_caption() if self.config_manager.get_show_report_caption() else ""
sent = await adapter.send_image(group_id, image_url, caption=caption)
if sent:
await self._try_upload_image(group_id, image_url, platform_id)