[gnome-shell] telepathyClient: Update notification time from message



commit c6f22826cf4b6f1825b2efcef232d98349f208b3
Author: Florian Müllner <fmuellner gnome org>
Date:   Mon Feb 27 11:27:52 2017 +0100

    telepathyClient: Update notification time from message
    
    As the telepathy integration picks up existing channels on startup,
    ChatNotifications are another case where the real time the message
    was received may be before the time it is picked up by the shell.
    While this is less of an annoyance than restored GNotifications, as
    it generally only affects restarts from the run dialog, it's an
    easy fix now ...
    
    https://bugzilla.gnome.org/show_bug.cgi?id=775799

 js/ui/components/telepathyClient.js |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/js/ui/components/telepathyClient.js b/js/ui/components/telepathyClient.js
index 927ca45..f1fe09f 100644
--- a/js/ui/components/telepathyClient.js
+++ b/js/ui/components/telepathyClient.js
@@ -670,6 +670,8 @@ const ChatNotification = new Lang.Class({
                        styles: styles,
                        timestamp: message.timestamp,
                        noTimestamp: noTimestamp });
+        this.update(this.title, this.bannerBodyText,
+                    { datetime: GLib.DateTime.new_from_unix_local (message.timestamp) });
     },
 
     _filterMessages: function() {


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