Mercurial > libervia-backend
diff frontends/src/quick_frontend/quick_chat.py @ 2051:1dc3c7680ea0
quick_frontend (chat): fixed hash generation, tuple was causing trouble when used with unicode() because of dbus.String
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 28 Aug 2016 19:42:48 +0200 |
parents | aff318d4a786 |
children | ed33cd382bf9 |
line wrap: on
line diff
--- a/frontends/src/quick_frontend/quick_chat.py Sun Aug 28 19:23:58 2016 +0200 +++ b/frontends/src/quick_frontend/quick_chat.py Sun Aug 28 19:42:48 2016 +0200 @@ -226,7 +226,7 @@ @staticmethod def getWidgetHash(target, profiles): profile = list(profiles)[0] - return (profile, target.bare) + return profile + "\n" + target.bare @staticmethod def getPrivateHash(target, profile):