diff --git a/couchpotato/core/providers/torrent/awesomehd/main.py b/couchpotato/core/providers/torrent/awesomehd/main.py index fed1251..79482f2 100644 --- a/couchpotato/core/providers/torrent/awesomehd/main.py +++ b/couchpotato/core/providers/torrent/awesomehd/main.py @@ -25,6 +25,11 @@ class AwesomeHD(TorrentProvider): if data: try: soup = BeautifulSoup(data) + + if soup.find('error'): + log.error(soup.find('error').get_text()) + return + authkey = soup.find('authkey').get_text() entries = soup.find_all('torrent')