diff --git a/couchpotato/core/providers/torrent/iptorrents/main.py b/couchpotato/core/providers/torrent/iptorrents/main.py
index c5783b9c5c511aa9e1cbde805bb66292f36c5b05..f71639e80b3a5571f0983ca95fb9de2400901655 100644
--- a/couchpotato/core/providers/torrent/iptorrents/main.py
+++ b/couchpotato/core/providers/torrent/iptorrents/main.py
@@ -42,7 +42,7 @@ class IPTorrents(TorrentProvider):
             try:
                 result_table = html.find('table', attrs = {'class' : 'torrents'})
 
-                if not result_table:
+                if not result_table or 'nothing found!' in data.lower():
                     return
 
                 entries = result_table.find_all('tr')