# HG changeset patch # User Goffi # Date 1472406168 -7200 # Node ID 1dc3c7680ea02159917ae4bf2da96c8daede3c1d # Parent 046449cc2bff95dc65db0bcba8964e2d8784de41 quick_frontend (chat): fixed hash generation, tuple was causing trouble when used with unicode() because of dbus.String diff -r 046449cc2bff -r 1dc3c7680ea0 frontends/src/quick_frontend/quick_chat.py --- 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):