diff --git a/command_handlers.py b/command_handlers.py index 195c8c7..9cfbf9c 100644 --- a/command_handlers.py +++ b/command_handlers.py @@ -524,9 +524,6 @@ def handle_post_bulletin_command(sender_id, message, interface, bbs_nodes): unique_id = add_bulletin(board_name, sender_short_name, subject, content, bbs_nodes, interface) send_message(f"Your bulletin '{subject}' has been posted to {board_name}.", sender_id, interface) - if board_name.lower() == "urgent": - notification_message = f"💥NEW URGENT BULLETIN💥\nFrom: {sender_short_name}\nTitle: {subject}" - send_message(notification_message, BROADCAST_NUM, interface) except Exception as e: logging.error(f"Error processing post bulletin command: {e}")