Don't try sending empty messages

This commit is contained in:
Mark Qvist 2022-10-08 20:03:01 +02:00
parent c5ad94b2d3
commit 6c19fc85b9
1 changed files with 3 additions and 0 deletions

View File

@ -506,6 +506,9 @@ class SidebandApp(MDApp):
self.open_conversations(direction="right")
def message_send_action(self, sender=None):
if self.root.ids.message_text.text == "":
return
def cb(dt):
self.message_send_dispatch(sender)
Clock.schedule_once(cb, 0.20)