Skip to content

Commit

Permalink
fix bug #621
Browse files Browse the repository at this point in the history
  • Loading branch information
CAICAIIs committed Feb 28, 2025
1 parent dd5c0d3 commit 681bdb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async def _convert_handle_request_event(self, event: Event) -> AstrBotMessage:
else:
abm.type = MessageType.FRIEND_MESSAGE
if self.unique_session and abm.type == MessageType.GROUP_MESSAGE:
abm.session_id = abm.sender.user_id + "_" + str(event.group_id)
abm.session_id = str(abm.sender.user_id) + "_" + str(event.group_id)
abm.message_str = ''
abm.message = []
abm.timestamp = int(time.time())
Expand Down

0 comments on commit 681bdb5

Please sign in to comment.