Had to get this working. Tried the following fix by replacing line 63 of the IPTorrents file.
- Code: Select all
result_table = html.find('table', attrs = {'class': 'torrents'})
with
- Code: Select all
result_table = html.find('table', id='torrents')
Seems to be working again now. If I understand this correctly it's IPtorrents that has changed something on their end which makes the current version of CouchPotato on ASUSTOR not communicate with website correctly.
If you want to try this yourself you have to SSH in to your NAS and locate the following path:
couchpotato/core/media/_base/providers/torrent/iptorrents.py
Use vi or something to edit the file. I read that there might be a merge conflict if this is updated by Clinton and you have auto-update enabled.