comparison sat_frontends/quick_frontend/quick_chat.py @ 2896:ca55e02a6fc8

quick_frontend (app): fixed filters serialisation before calling bridge.historyGet
author Goffi <goffi@goffi.org>
date Sun, 07 Apr 2019 20:58:15 +0200
parents dd650f3e070f
children 49458e12e414
comparison
equal deleted inserted replaced
2895:1a23547f95fd 2896:ca55e02a6fc8
660 self.host.bridge.historyGet( 660 self.host.bridge.historyGet(
661 unicode(self.host.profiles[profile].whoami.bare), 661 unicode(self.host.profiles[profile].whoami.bare),
662 unicode(target), 662 unicode(target),
663 size, 663 size,
664 True, 664 True,
665 filters, 665 {k: unicode(v) for k,v in filters.iteritems()},
666 profile, 666 profile,
667 callback=_historyGetCb, 667 callback=_historyGetCb,
668 errback=_historyGetEb, 668 errback=_historyGetEb,
669 ) 669 )
670 670