From d4f59a6f3c8259efb7458b9a5300d953402e8925 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sat, 6 Jul 2013 16:03:39 +0200 Subject: [PATCH] VCARD: if we loaded the vcard mime from the server don't load it again. Thanks to Stefan for reporting this (again) --- webcit/vcard_edit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webcit/vcard_edit.c b/webcit/vcard_edit.c index fee75f30f..1a9f11a67 100644 --- a/webcit/vcard_edit.c +++ b/webcit/vcard_edit.c @@ -137,7 +137,8 @@ wc_mime_attachment *load_vcard(message_summary *Msg) if (VCMime == NULL) return NULL; - MimeLoadData(VCMime); + if (VCMime->Data == NULL) + MimeLoadData(VCMime); return VCMime; } -- 2.30.2