Fix removing a user when he leave a channel

This commit is contained in:
adator
2025-08-21 01:38:23 +02:00
parent 483638dab4
commit ae1f0ed424
4 changed files with 5 additions and 10 deletions

View File

@@ -897,7 +897,7 @@ class Irc:
self.Protocol.on_squit(serverMsg=original_response)
case 'PART':
self.Protocol.on_part(serverMsg=parsed_protocol)
self.Protocol.on_part(serverMsg=original_response)
case 'VERSION':
self.Protocol.on_version_msg(serverMsg=original_response)