开放入库数据

This commit is contained in:
liuwei
2025-04-28 11:05:18 +08:00
parent 5d141a9a4d
commit f6fc5ad159

View File

@@ -225,14 +225,14 @@ class Robot(Job):
self.LOG.error(f"process_message error: {e}") self.LOG.error(f"process_message error: {e}")
# # 聊天记录入库动作: # # 聊天记录入库动作:
# try: try:
# self.message_storage.archive_message(msg) self.message_storage.archive_message(msg)
# # 单独处理图片消息 # 单独处理图片消息
# if msg.msg_type == 3: # 图片消息类型 if msg.msg_type == 3: # 图片消息类型
# self.message_storage.process_image(msg) self.message_storage.process_image(msg)
# except Exception as e: except Exception as e:
# self.LOG.error(f"archive_message error: {e}") self.LOG.error(f"archive_message error: {e}")
#
# # 如果插件已处理消息,则不再执行后续的业务逻辑 # # 如果插件已处理消息,则不再执行后续的业务逻辑
# if plugin_processed: # if plugin_processed:
# return # return