# HG changeset patch # User Goffi # Date 1552743542 -3600 # Node ID 26d6ac4e4a66d8d6b33a4cfdf9df98cad7076ea4 # Parent ef65dbce313bfe13ff116f567a48c29aa960b837 plugin android: don't send notification if message comes from ourself (from an other device) diff -r ef65dbce313b -r 26d6ac4e4a66 sat/plugins/plugin_misc_android.py --- a/sat/plugins/plugin_misc_android.py Sun Mar 10 18:04:27 2019 +0100 +++ b/sat/plugins/plugin_misc_android.py Sat Mar 16 14:39:02 2019 +0100 @@ -155,8 +155,14 @@ pass def _notifyMessage(self, mess_data, client): - # send notification if there is a message and it is not a groupchat - if mess_data["message"] and mess_data["type"] != C.MESS_TYPE_GROUPCHAT: + """Send notification when suitable + + notification is sent if: + - there is a message and it is not a groupchat + - message is not coming from ourself + """ + if (mess_data["message"] and mess_data["type"] != C.MESS_TYPE_GROUPCHAT + and not mess_data["from"].userhostJID() == client.jid.userhostJID()): message = mess_data["message"].itervalues().next() try: subject = mess_data["subject"].itervalues().next()