diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js index 252b2661f..18f4f88d7 100644 --- a/js/ui/telepathyClient.js +++ b/js/ui/telepathyClient.js @@ -411,7 +411,11 @@ Notification.prototype = { styles.push('chat-action'); } - this.update(this.source.title, messageBody, { customContent: true, bannerMarkup: true }); + if (message.direction == NotificationDirection.RECEIVED) { + this.update(this.source.title, messageBody, { customContent: true, + bannerMarkup: true }); + } + this._append(messageBody, styles, message.timestamp, noTimestamp); },