summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenato Araujo Oliveira Filho <renato.filho@canonical.com>2014-03-20 15:13:10 -0300
committerPhilip Withnall <philip.withnall@collabora.co.uk>2014-03-20 18:28:03 +0000
commit59d9a26b53401c81882fc81a2169f1e07316df53 (patch)
tree15a9357912a1b15f03fdabc10ce07e5f532feda9
parentab691d4feab030bab7d03f5f5a6f86a0cdd930d6 (diff)
Fixed EDS persona store display-name value.
https://bugzilla.gnome.org/show_bug.cgi?id=726787
-rw-r--r--backends/eds/lib/edsf-persona-store.vala3
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/eds/lib/edsf-persona-store.vala b/backends/eds/lib/edsf-persona-store.vala
index ce4f00da..1fc3425a 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;