From 37d2560c0c4bf58c3e68252b227f17aef3f55d70 Mon Sep 17 00:00:00 2001 From: Blergo Date: Wed, 3 Jul 2024 18:28:25 +0100 Subject: [PATCH] Message optimization More message shortening --- command_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command_handlers.py b/command_handlers.py index 8e41624..5e3c833 100644 --- a/command_handlers.py +++ b/command_handlers.py @@ -337,7 +337,7 @@ def handle_mail_steps(sender_id, message, step, state, interface, bbs_nodes): send_message(f"Mail has been posted to the mailbox of {recipient_name}.\n(╯°□°)╯📨📬", sender_id, interface) # Send notification to the recipient - notification_message = f"You have a new mail message from {sender_short_name}. Check your mailbox by responding to this message with M." + notification_message = f"You have new mail from {sender_short_name}. Check your mailbox by responding to this message with M." send_message(notification_message, recipient_id, interface) update_user_state(sender_id, None)