Update server.py

This commit is contained in:
Nova Cat 2024-12-17 14:07:33 -08:00
parent bbcaa88de4
commit 75cf799959

View file

@ -359,6 +359,8 @@ def session(connection, client):
# Parse the quit message. # Parse the quit message.
done = [] done = []
msg = text.split(" ")[1:] msg = text.split(" ")[1:]
if msg[0] == ":":
msg=msg[1:]
if len(msg) > 0: if len(msg) > 0:
mse = " ".join(msg) mse = " ".join(msg)
msg = f"Quit: {mse}" msg = f"Quit: {mse}"