diff -Nru folks-0.9.5/debian/changelog folks-0.9.5/debian/changelog --- folks-0.9.5/debian/changelog 2014-02-21 15:07:26.000000000 +0000 +++ folks-0.9.5/debian/changelog 2014-03-20 19:32:41.000000000 +0000 @@ -1,3 +1,10 @@ +folks (0.9.5-1ubuntu4) trusty; urgency=medium + + * debian/patches/bz726787.patch + - Fixed EDS persona store display-name value (Renato Filho) + + -- Ken VanDine Thu, 20 Mar 2014 15:15:28 -0400 + folks (0.9.5-1ubuntu3) trusty; urgency=medium * debian/patches/bz724809.patch diff -Nru folks-0.9.5/debian/patches/bz726787.patch folks-0.9.5/debian/patches/bz726787.patch --- folks-0.9.5/debian/patches/bz726787.patch 1970-01-01 00:00:00.000000000 +0000 +++ folks-0.9.5/debian/patches/bz726787.patch 2014-03-20 19:12:37.000000000 +0000 @@ -0,0 +1,24 @@ +From 59d9a26b53401c81882fc81a2169f1e07316df53 Mon Sep 17 00:00:00 2001 +From: Renato Araujo Oliveira Filho +Date: Thu, 20 Mar 2014 18:13:10 +0000 +Subject: Fixed EDS persona store display-name value. + +https://bugzilla.gnome.org/show_bug.cgi?id=726787 +--- +diff --git a/backends/eds/lib/edsf-persona-store.vala b/backends/eds/lib/edsf-persona-store.vala +index ce4f00d..1fc3425 100644 +--- a/backends/eds/lib/edsf-persona-store.vala ++++ b/backends/eds/lib/edsf-persona-store.vala +@@ -313,8 +313,9 @@ public class Edsf.PersonaStore : Folks.PersonaStore + public PersonaStore.with_source_registry (E.SourceRegistry r, E.Source s) + { + string eds_uid = s.get_uid (); ++ string eds_name = s.get_display_name (); + Object (id: eds_uid, +- display_name: eds_uid, ++ display_name: eds_name, + source: s); + + this._source_registry = r; +-- +cgit v0.9.2 diff -Nru folks-0.9.5/debian/patches/series folks-0.9.5/debian/patches/series --- folks-0.9.5/debian/patches/series 2014-02-21 14:40:00.000000000 +0000 +++ folks-0.9.5/debian/patches/series 2014-03-20 19:15:38.000000000 +0000 @@ -2,3 +2,4 @@ eds_add_im_fields.patch bz724809.patch bz724058.patch +bz726787.patch