|
|
@ -107,9 +107,9 @@ class uTorrent(Downloader): |
|
|
|
|
|
|
|
count += 1 |
|
|
|
# Check if torrent is saved in subfolder of torrent name |
|
|
|
data = self.utorrent_api.get_files(torrent_hash) |
|
|
|
getfiles_data = self.utorrent_api.get_files(torrent_hash) |
|
|
|
|
|
|
|
torrent_files = json.loads(data) |
|
|
|
torrent_files = json.loads(getfiles_data) |
|
|
|
if torrent_files.get('error'): |
|
|
|
log.error('Error getting data from uTorrent: %s', torrent_files.get('error')) |
|
|
|
return False |
|
|
|