diff --git a/src/cutecoin/gui/community_tab.py b/src/cutecoin/gui/community_tab.py
index 7aa262539b0f48d42dd18ddc82e43763a521a5f8..ef0995bd81d5a023afe190ceee8023d6a9567a51 100644
--- a/src/cutecoin/gui/community_tab.py
+++ b/src/cutecoin/gui/community_tab.py
@@ -227,8 +227,9 @@ The process to join back the community later will have to be done again.""")
             return False
 
         persons = []
+        logging.debug(response)
         for identity in response['results']:
-            persons.append(identity['pubkey'])
+            persons.append(Person.lookup(identity['pubkey'], self.community))
 
         self.edit_textsearch.clear()
         self.refresh(persons)