changeset 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 1a23547f95fd
children 82d8243e6ad1
files sat_frontends/quick_frontend/quick_chat.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sat_frontends/quick_frontend/quick_chat.py	Sun Apr 07 20:57:13 2019 +0200
+++ b/sat_frontends/quick_frontend/quick_chat.py	Sun Apr 07 20:58:15 2019 +0200
@@ -662,7 +662,7 @@
             unicode(target),
             size,
             True,
-            filters,
+            {k: unicode(v) for k,v in filters.iteritems()},
             profile,
             callback=_historyGetCb,
             errback=_historyGetEb,