caronc / nzb-notify

Push Notifications to a large number of supported services for NZBGet and SABnzbd (based on Apprise)
GNU General Public License v3.0
129 stars 16 forks source link

Improve Unicode Support #49

Closed caronc closed 5 years ago

caronc commented 5 years ago

Here is the original traceback source before it was tidied up below:

Traceback (most recent call last):
...
File "apprise\Apprise.py", line 248, in notify
File "path\to\markdown\__init__.py", line 470, in markdown
File "path\to\markdown\__init__.py", line 338, in convert
UnicodeDecodeError: 'ascii' codec can't decode byte 0x92 in position 3078: ordinal not in range(128). -- Note: Markdown only accepts unicode input!

nzb-notify should force the conversion of all strings to unicode and not rely on apprise to do this. Will close apprise/20 and move the issue to here instead.

caronc commented 5 years ago

Issue should be resolved now.