From 147fc9874a7ad4324f57bc9dd51d6d11d18f4548 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Tue, 26 Jul 2016 11:07:16 +0200 Subject: [PATCH] Save friend when it is imported from a vCard. --- coreapi/friendlist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/coreapi/friendlist.c b/coreapi/friendlist.c index 7baf0fe81..7d1b5dd71 100644 --- a/coreapi/friendlist.c +++ b/coreapi/friendlist.c @@ -840,6 +840,7 @@ int linphone_friend_list_import_friends_from_vcard4_file(LinphoneFriendList *lis LinphoneFriend *lf = linphone_friend_new_from_vcard(vcard); if (lf) { if (LinphoneFriendListOK == linphone_friend_list_import_friend(list, lf, TRUE)) { + linphone_friend_save(lf, lf->lc); count++; } linphone_friend_unref(lf);