Compare commits

..

No commits in common. "2b7d47cb292e39970d1e95bc3b7fc53634230e2a" and "69d74e33ddc1d9e3992401ee3bee626664322200" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ def add_bulletin(board, sender_short_name, subject, content, bbs_nodes, interfac
# New logic to send group chat notification for urgent bulletins # New logic to send group chat notification for urgent bulletins
if board.lower() == "urgent": if board.lower() == "urgent":
notification_message = f"💥NEW URGENT BULLETIN💥\nFrom: {sender_short_name}\nTitle: {subject}\nDM "CB,,Urgent" to view" notification_message = f"💥NEW URGENT BULLETIN💥\nFrom: {sender_short_name}\nTitle: {subject}"
send_message(notification_message, BROADCAST_NUM, interface) send_message(notification_message, BROADCAST_NUM, interface)
return unique_id return unique_id

View file

@ -71,7 +71,7 @@ def process_message(sender_id, message, interface, is_sync_message=False):
add_bulletin(board, sender_short_name, subject, content, [], interface, unique_id=unique_id) add_bulletin(board, sender_short_name, subject, content, [], interface, unique_id=unique_id)
if board.lower() == "urgent": if board.lower() == "urgent":
notification_message = f"💥NEW URGENT BULLETIN💥\nFrom: {sender_short_name}\nTitle: {subject}\nDM "CB,,Urgent" to view" notification_message = f"💥NEW URGENT BULLETIN💥\nFrom: {sender_short_name}\nTitle: {subject}"
send_message(notification_message, BROADCAST_NUM, interface) send_message(notification_message, BROADCAST_NUM, interface)
elif message.startswith("MAIL|"): elif message.startswith("MAIL|"):
parts = message.split("|") parts = message.split("|")