[gnome-shell/gnome-3-0] telepathyClient: don't update notifications for outgoing messages



commit 0d92f2b0c562a64a17d854580f0fba372b1726ec
Author: Jonny Lamb <jonnylamb gnome org>
Date:   Sun May 15 10:07:23 2011 +0100

    telepathyClient: don't update notifications for outgoing messages
    
    If you receive a message, a notification will appear. If you reply in
    Empathy's chat window before the notification disappears, the
    notification is updated with the contents of the message you *just*
    sent! We should only update notifications if they're incoming.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650219
    
    Signed-off-by: Jonny Lamb <jonnylamb gnome org>

 js/ui/telepathyClient.js |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js
index 0a3f6b7..670416d 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);
     },
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]