Skip to content
Snippets Groups Projects
Commit c6842710 authored by Vincent Texier's avatar Vincent Texier
Browse files

Fix bug informations context menu broken in members list

parent 3ce7a8bf
No related branches found
No related tags found
No related merge requests found
......@@ -50,9 +50,9 @@ class Graph(object):
logging.debug("path between %s to %s..." % (from_identity.uid, to_identity.uid))
if from_identity.pubkey not in self._graph.keys():
self.add_identity(from_identity)
certifier_list = from_identity.certifiers_of(self.community)
certifier_list = from_identity.certifiers_of(self.app.identities_registry, self.community)
self.add_certifier_list(certifier_list, from_identity, to_identity)
certified_list = from_identity.certified_by(self.community)
certified_list = from_identity.certified_by(self.app.identities_registry, self.community)
self.add_certified_list(certified_list, from_identity, to_identity)
if to_identity.pubkey not in self._graph.keys():
......
......@@ -145,7 +145,7 @@ class CommunityTabWidget(QWidget, Ui_CommunityTabWidget):
self.certify_identity(person)
def identity_informations(self, person):
dialog = MemberDialog(none, self.account, self.community, person)
dialog = MemberDialog(self.app, self.account, self.community, person)
dialog.exec_()
def add_identity_as_contact(self, person):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment