From: Wilfried Goesgens Date: Sat, 6 Jul 2013 14:03:39 +0000 (+0200) Subject: VCARD: if we loaded the vcard mime from the server don't load it again. X-Git-Tag: v8.20~10 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=d4f59a6f3c8259efb7458b9a5300d953402e8925 VCARD: if we loaded the vcard mime from the server don't load it again. Thanks to Stefan for reporting this (again) --- 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; }