Mercurial > libervia-backend
comparison src/core/sat_main.py @ 2007:19b9d3f8a6c7
plugin XEP-0085, quick_frontends, primitivus: chat states are working again
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 17 Jul 2016 16:47:33 +0200 |
parents | a2bc5089c2eb |
children | 046449cc2bff |
comparison
equal
deleted
inserted
replaced
2006:0ddf3edf643a | 2007:19b9d3f8a6c7 |
---|---|
518 | 518 |
519 | 519 |
520 ## XMPP methods ## | 520 ## XMPP methods ## |
521 | 521 |
522 def getWaitingConf(self, profile_key=None): | 522 def getWaitingConf(self, profile_key=None): |
523 assert(profile_key) | 523 assert profile_key |
524 client = self.getClient(profile_key) | 524 client = self.getClient(profile_key) |
525 ret = [] | 525 ret = [] |
526 for conf_id in client._waiting_conf: | 526 for conf_id in client._waiting_conf: |
527 conf_type, data = client._waiting_conf[conf_id][:2] | 527 conf_type, data = client._waiting_conf[conf_id][:2] |
528 ret.append((conf_id, conf_type, data)) | 528 ret.append((conf_id, conf_type, data)) |