From b6053211b83330ba627cb444f78f1c1e827dd24c Mon Sep 17 00:00:00 2001 From: Alexandre Savard <alexandresavard@msavard.(none)> Date: Thu, 23 Jun 2011 14:24:48 -0400 Subject: [PATCH] #6251: Do not had history calls in calllist when loading history file --- sflphone-client-gnome/src/conference_obj.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sflphone-client-gnome/src/conference_obj.c b/sflphone-client-gnome/src/conference_obj.c index 5581dcfd72..5d7ae40b52 100644 --- a/sflphone-client-gnome/src/conference_obj.c +++ b/sflphone-client-gnome/src/conference_obj.c @@ -354,8 +354,9 @@ static void process_conference_participant_from_serialized(gchar *participant, c // we should create call here and add it to the conference to be inserted in history create_new_call(HISTORY_ENTRY, CALL_STATE_DIALING, call_id, account, name, phone_number, &tmp_call); - calllist_add_history_call(tmp_call); - calllist_add_call(current_calls, tmp_call); + // calllist_add_history_call(tmp_call); + calllist_add_call(history, tmp_call); + // calllist_add_call(current_calls, tmp_call); conference_add_participant(call_id, conf); -- GitLab