mirror of
https://github.com/kuitoi/kuitoi-Server.git
synced 2025-08-17 08:15:42 +00:00
Minor fix
This commit is contained in:
parent
939723acdd
commit
aa5725e8a5
@ -288,8 +288,14 @@ class Client:
|
|||||||
self.__Core.clients_by_nick.pop(self.nick)
|
self.__Core.clients_by_nick.pop(self.nick)
|
||||||
else:
|
else:
|
||||||
self.log.debug(f"Removing client; Closing connection...")
|
self.log.debug(f"Removing client; Closing connection...")
|
||||||
|
try:
|
||||||
if not self.__writer.is_closing():
|
if not self.__writer.is_closing():
|
||||||
self.__writer.close()
|
self.__writer.close()
|
||||||
|
except Exception as e:
|
||||||
|
self.log.debug(f"Error while closing writer: {e}")
|
||||||
|
try:
|
||||||
_, down_w = self._down_rw
|
_, down_w = self._down_rw
|
||||||
if down_w and not down_w.is_closing():
|
if down_w and not down_w.is_closing():
|
||||||
down_w.close()
|
down_w.close()
|
||||||
|
except Exception as e:
|
||||||
|
self.log.debug(f"Error while closing download writer: {e}")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user