修复空报错

pull/937/head
Bakadax 2025-05-13 09:57:02 +08:00
parent 8a520df064
commit 4357bdbe83
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ class NormalChat:
break
# 获取待处理消息列表
items_to_process = list(self.interest_dict.items())
items_to_process = list(self.interest_dict.items()) if self.interest_dict else []
if not items_to_process:
continue