X-Git-Url: https://git.0d.be/?p=empathy.git;a=blobdiff_plain;f=libempathy-gtk%2Fempathy-user-info.c;h=451caec8e9fcfe9f508c14cef271119e9e3f8b18;hp=e63f320fe9c0a9d663cc823f2db5e7a388fbbe95;hb=10983e93f69ddcc048cc582d777433ca2c7a2b39;hpb=87d26a13dcafdbd1a2f19817a987ad43b2a5336d diff --git a/libempathy-gtk/empathy-user-info.c b/libempathy-gtk/empathy-user-info.c index e63f320f..451caec8 100644 --- a/libempathy-gtk/empathy-user-info.c +++ b/libempathy-gtk/empathy-user-info.c @@ -192,6 +192,17 @@ fill_contact_info_grid (EmpathyUserInfo *self) { TpContactInfoField *field = l->data; + /* For some reason it can happen that the vCard contains fields the CM + * claims to be not supported. This is a workaround for gabble bug + * https://bugs.freedesktop.org/show_bug.cgi?id=64319. But we shouldn't + * crash on buggy CM anyway. */ + if (get_spec_from_list (specs, field->field_name) == NULL) + { + DEBUG ("Buggy CM: self's vCard contains %s field but it is not in " + "Connection' supported fields", field->field_name); + continue; + } + /* make a copy for the details_to_set list */ field = tp_contact_info_field_copy (field); DEBUG ("Field %s is in our vCard", field->field_name);