Private GIT

Skip to content
Snippets Groups Projects
Commit ffdb127f authored by Alexandre Beloin's avatar Alexandre Beloin
Browse files

Merge pull request #1278 from joshjowen/joshjowen-kat-verified-fix

Fix verified status of torrents from KAT
parents 4eafcd44 35096106
Branches
Tags
No related merge requests found
...@@ -239,7 +239,7 @@ class KATProvider(generic.TorrentProvider): ...@@ -239,7 +239,7 @@ class KATProvider(generic.TorrentProvider):
id = item['guid'] id = item['guid']
title = item['title'] title = item['title']
url = item['torrent_magneturi'] url = item['torrent_magneturi']
verified = bool(item['torrent_verified'] or 0) verified = bool(int(item['torrent_verified']) or 0)
seeders = int(item['torrent_seeds']) seeders = int(item['torrent_seeds'])
leechers = int(item['torrent_peers']) leechers = int(item['torrent_peers'])
size = int(item['torrent_contentlength']) size = int(item['torrent_contentlength'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment