diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js index 5e3f33c97..cee808242 100644 --- a/js/ui/telepathyClient.js +++ b/js/ui/telepathyClient.js @@ -289,6 +289,9 @@ Source.prototype = { }, _messageReceived: function(channel, message) { + if (message.get_message_type() == Tp.ChannelTextMessageType.DELIVERY_REPORT) + return; + message = makeMessageFromTpMessage(message, NotificationDirection.RECEIVED); this._notification.appendMessage(message); this.notify();