Mercurial > libervia-backend
diff frontends/src/quick_frontend/quick_app.py @ 1393:50d5d6325f62
quick_frontend, primitivus: various fixes (MUC and cached signals):
- actually call the cached signals, everything was there but the call was not done
- display '[]' instead of '[None]' when group message coming from the room (no resource)
- catch the exception when trying to delete an occupant who's not in the room
- do not cache a "main resource" for MUC entities
author | souliane <souliane@mailoo.org> |
---|---|
date | Wed, 25 Mar 2015 15:25:51 +0100 |
parents | 1276e6a0716b |
children | e3624cb3765d |
line wrap: on
line diff
--- a/frontends/src/quick_frontend/quick_app.py Wed Mar 25 15:28:02 2015 +0100 +++ b/frontends/src/quick_frontend/quick_app.py Wed Mar 25 15:25:51 2015 +0100 @@ -388,6 +388,7 @@ cached_signals = self.signals_cache.pop(profile, []) for function_name, handler, args, kwargs in cached_signals: log.debug(u"Calling cached signal [%s] with args %s and kwargs %s" % (function_name, args, kwargs)) + handler(*args, **kwargs) self.callListeners('profilePlugged', profile=profile)