mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 05:20:36 +01:00
Don't send empty commands
This commit is contained in:
parent
43e1912a0a
commit
8eea3bb5bb
@ -1250,7 +1250,11 @@ class SidebandApp(MDApp):
|
||||
self.open_conversations(direction="right")
|
||||
|
||||
def message_send_action(self, sender=None):
|
||||
if not (self.attach_type != None and self.attach_path != None) and self.messages_view.ids.message_text.text == "":
|
||||
if self.messages_view.ids.message_text.text == "":
|
||||
if not (self.attach_type != None and self.attach_path != None):
|
||||
return
|
||||
|
||||
if self.outbound_mode_command:
|
||||
return
|
||||
|
||||
def cb(dt):
|
||||
|
Loading…
Reference in New Issue
Block a user