From c6e7980430f5c9c3a43aad68aa6070300d3f90f1 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 28 Sep 2012 18:27:27 +0100 Subject: [PATCH] =?utf8?q?Bug=20684954=20=E2=80=94=20Debug=20message=20cla?= =?utf8?q?im=20that=20Individual=20are=20created=20with=20no=20personas?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix the debug message in the Individual constructor. Closes: https://bugzilla.gnome.org/show_bug.cgi?id=684954 --- NEWS | 1 + folks/individual.vala | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index b775862..6a61cf6 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,7 @@ Bugs fixed: Telepathy account • Bug 672709 — Add new interaction details properties to individuals (follow-up patch) +• Bug 684954 — Debug message claim that Individual are created with no personas Overview of changes from libfolks 0.7.4 to libfolks 0.7.4.1 =========================================================== diff --git a/folks/individual.vala b/folks/individual.vala index f301dd9..5e43736 100644 --- a/folks/individual.vala +++ b/folks/individual.vala @@ -1152,13 +1152,13 @@ public class Folks.Individual : Object, public Individual (Set? personas) { Object (personas: personas); - } - construct - { debug ("Creating new Individual with %u Personas: %p", this._persona_set.size, this); + } + construct + { this._persona_set_ro = this._persona_set.read_only_view; } -- 2.7.4