Don't notify on sync messages

// FREEBIE
This commit is contained in:
lilia 2015-09-09 16:53:34 -07:00
parent 6b483195cb
commit d6d1a7da55

View file

@ -213,7 +213,9 @@
conversation.save().then(function() {
message.save().then(function() {
notifyConversation(message);
if (message.isIncoming()) {
notifyConversation(message);
}
});
});
});