[v4.9.15] - fix: 发送假超时不应该导致上传群相册群文件失败,删除 PDF 模块和相关的功能

This commit is contained in:
SXP-Simon
2026-04-07 22:30:20 +08:00
parent 93b2b847ef
commit 937f4e1782
5 changed files with 21 additions and 14 deletions
+4 -2
View File
@@ -431,8 +431,10 @@ class ConfigManager:
"""设置输出格式"""
valid_formats = ["image", "text", "html"]
if format_type.lower() not in valid_formats:
raise ValueError(f"无效的输出格式: {format_type}。有效选项: {valid_formats}")
raise ValueError(
f"无效的输出格式: {format_type}。有效选项: {valid_formats}"
)
self._ensure_group("basic")["output_format"] = format_type.lower()
self.config.save_config()