fix:修正merge带来的问题

This commit is contained in:
SengokuCola
2025-07-13 13:46:12 +08:00
parent 5fd4caf23b
commit aafa4c688b
6 changed files with 22 additions and 6 deletions

View File

@@ -95,7 +95,7 @@ class BaseWillingManager(ABC):
def setup(self, message: dict, chat: ChatStream):
person_id = PersonInfoManager.get_person_id(chat.platform, chat.user_info.user_id) # type: ignore
self.ongoing_messages[message.message_info.message_id] = WillingInfo( # type: ignore
self.ongoing_messages[message.get("message_id", "")] = WillingInfo( # type: ignore
message=message,
chat=chat,
person_info_manager=get_person_info_manager(),