--- gnome-contacts-3.36.2/src/contacts-contact-list.vala 2020-06-19 08:45:08.116728500 -0300 +++ /tmp/contacts-contact-list.vala 2020-12-01 09:31:25.894985426 -0300 @@ -243,7 +243,7 @@ selection_changed (individual); #if HAVE_TELEPATHY if (individual != null) - Contact.fetch_contact_info (individual); + Utils.fetch_contact_info (individual); #endif } --- gnome-contacts-3.36.2/src/contacts-contact-sheet.vala 2020-06-19 08:45:08.116728500 -0300 +++ /tmp/contacts-contact-sheet.vala 2020-12-01 09:34:13.683604120 -0300 @@ -27,6 +27,7 @@ public class Contacts.ContactSheet : Grid { private int last_row = 0; private Individual individual; + private unowned Store store; public bool narrow { get; set; default = true; } private const string[] SORTED_PROPERTIES = { @@ -43,6 +44,7 @@ public ContactSheet (Individual individual, Store store) { Object (row_spacing: 12, column_spacing: 12); this.individual = individual; + this.store = store; this.individual.notify.connect (update); this.individual.personas_changed.connect (update); @@ -242,7 +244,7 @@ var type = im_persona.presence_type; if (type != PresenceType.UNSET && type != PresenceType.ERROR && type != PresenceType.OFFLINE && type != PresenceType.UNKNOWN) { - Utils.start_chat (this.contact, protocol, id.value); + Utils.start_chat (this.individual, protocol, id.value); } } }); --- gnome-contacts-3.36.2/src/contacts-utils.vala 2020-06-19 08:45:08.120728500 -0300 +++ /tmp/contacts-utils.vala 2020-12-01 09:35:46.319945702 -0300 @@ -80,8 +80,8 @@ } #if HAVE_TELEPATHY - public void start_chat (Contact contact, string protocol, string id) { - var im_persona = contact.find_im_persona (protocol, id); + public void start_chat (Individual individual, string protocol, string id) { + var im_persona = Utils.find_im_persona (individual, protocol, id); var account = (im_persona.store as Tpf.PersonaStore).account; var request_dict = new HashTable(str_hash, str_equal); request_dict.insert (TelepathyGLib.PROP_CHANNEL_CHANNEL_TYPE,