fix conversion warning
Signed-off-by: Christophe Lampin <weboob@lampin.net>
This commit is contained in:
parent
387c75436c
commit
222f65d373
1 changed files with 1 additions and 1 deletions
|
|
@ -217,7 +217,7 @@ class HelloBank(BaseBrowser):
|
||||||
self.form.set_all_readonly(False)
|
self.form.set_all_readonly(False)
|
||||||
self['identifiant'] = page_id
|
self['identifiant'] = page_id
|
||||||
if len(thread.id):
|
if len(thread.id):
|
||||||
self['idMessage'] = thread.id
|
self['idMessage'] = thread.id.encode('utf-8')
|
||||||
# the JS does this, but it makes us unable to read unread messages
|
# the JS does this, but it makes us unable to read unread messages
|
||||||
#if unread:
|
#if unread:
|
||||||
# self['newMsg'] = thread.id
|
# self['newMsg'] = thread.id
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue