diff options
author | Pierre-Luc Beaudoin <pierre-luc@pierlux.com> | 2009-05-23 06:51:57 +0800 |
---|---|---|
committer | Pierre-Luc Beaudoin <pierre-luc@pierlux.com> | 2009-05-28 00:52:07 +0800 |
commit | 968b8e35a504d0fb617c7a022cd3dbb04560cc6e (patch) | |
tree | f5773238e767d425700679431d0bbb9228e3f42f /libempathy-gtk | |
parent | 7af9d6e26eb64e0da0bfad39320d41e9c8a66fcc (diff) | |
download | gsoc2013-empathy-968b8e35a504d0fb617c7a022cd3dbb04560cc6e.tar gsoc2013-empathy-968b8e35a504d0fb617c7a022cd3dbb04560cc6e.tar.gz gsoc2013-empathy-968b8e35a504d0fb617c7a022cd3dbb04560cc6e.tar.bz2 gsoc2013-empathy-968b8e35a504d0fb617c7a022cd3dbb04560cc6e.tar.lz gsoc2013-empathy-968b8e35a504d0fb617c7a022cd3dbb04560cc6e.tar.xz gsoc2013-empathy-968b8e35a504d0fb617c7a022cd3dbb04560cc6e.tar.zst gsoc2013-empathy-968b8e35a504d0fb617c7a022cd3dbb04560cc6e.zip |
Don't list timestamp in the location fields as it is already included in the header
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index 045a8105e..5ccc4b009 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -1369,6 +1369,9 @@ contact_widget_location_update (EmpathyContactWidget *information) char *svalue = NULL; skey = (const gchar *) key; + if (tp_strdiff (skey, EMPATHY_LOCATION_TIMESTAMP) == FALSE) + continue; + user_label = location_key_to_label (skey); gvalue = (GValue *) value; |