From c6f22826cf4b6f1825b2efcef232d98349f208b3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
Date: Mon, 27 Feb 2017 11:27:52 +0100
Subject: [PATCH] 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 file changed, 2 insertions(+)

diff --git a/js/ui/components/telepathyClient.js b/js/ui/components/telepathyClient.js
index 927ca456e..f1fe09f95 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() {