Private GIT

Skip to content
Snippets Groups Projects
Commit d41574c9 authored by Fernando's avatar Fernando
Browse files

Fix Extratorrent encoding

parent 26774979
No related branches found
No related tags found
No related merge requests found
...@@ -87,7 +87,7 @@ class ExtraTorrentProvider(generic.TorrentProvider): ...@@ -87,7 +87,7 @@ class ExtraTorrentProvider(generic.TorrentProvider):
entries = entries if isinstance(entries, list) else [entries] entries = entries if isinstance(entries, list) else [entries]
for item in entries: for item in entries:
title = item['title'] title = item['title'].decode('utf-8')
# info_hash = item['info_hash'] # info_hash = item['info_hash']
size = int(item['size']) size = int(item['size'])
seeders = helpers.tryInt(item['seeders'], 0) seeders = helpers.tryInt(item['seeders'], 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment