Don't notify on sync messages
// FREEBIE
This commit is contained in:
parent
6b483195cb
commit
d6d1a7da55
1 changed files with 3 additions and 1 deletions
|
@ -213,7 +213,9 @@
|
|||
|
||||
conversation.save().then(function() {
|
||||
message.save().then(function() {
|
||||
notifyConversation(message);
|
||||
if (message.isIncoming()) {
|
||||
notifyConversation(message);
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue