From d380e8fb40d6ea5012ed67ef6b649e429e06e8bd Mon Sep 17 00:00:00 2001 From: KKlochko Date: Tue, 12 Dec 2023 18:05:40 +0200 Subject: [PATCH] Update the send_notification to send the message without the title. --- notification_producer/producer_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification_producer/producer_client.py b/notification_producer/producer_client.py index f3fedf1..76a32b3 100644 --- a/notification_producer/producer_client.py +++ b/notification_producer/producer_client.py @@ -42,7 +42,7 @@ class ProducerClient: async def send_notification(self, title: str, message: str): await self.send(title) - await self.send(f'# {title}\n{message}') + await self.send(message) async def notify_interactive(self): await self.connect()