Update the send_notification to send the message without the title.

main
KKlochko 1 year ago
parent ba4a51519b
commit d380e8fb40

@ -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()

Loading…
Cancel
Save