Mercurial > libervia-backend
diff sat/bridge/pb.py @ 2894:c7c52c0dc13a
core, quick_frontend(app): fixed connected signal handling
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 07 Apr 2019 20:55:27 +0200 |
parents | 82b781c46841 |
children | ab2696e34d29 |
line wrap: on
line diff
--- a/sat/bridge/pb.py Sun Apr 07 18:50:13 2019 +0200 +++ b/sat/bridge/pb.py Sun Apr 07 20:55:27 2019 +0200 @@ -141,8 +141,8 @@ def actionNew(self, action_data, id, security_limit, profile): self.sendSignal("actionNew", action_data, id, security_limit, profile) - def connected(self, profile, jid_s): - self.sendSignal("connected", profile, jid_s) + def connected(self, jid_s, profile): + self.sendSignal("connected", jid_s, profile) def contactDeleted(self, entity_jid, profile): self.sendSignal("contactDeleted", entity_jid, profile)