-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
On Python 2.7 there's a problem in yowsup-library, that can lead to a crash on start, because of unicode decoding error. This needs more investigation, but can be worked around for now.
To fix the issue edit yowsup/structs/protocoltreenode.py and change line 63
from
out += "%s" % self.datato
try:
out += "%s" % self.data
except UnicodeDecodeError:
passReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels