diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js index 0a3f6b724..670416da0 100644 --- a/js/ui/telepathyClient.js +++ b/js/ui/telepathyClient.js @@ -416,7 +416,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); },