Private GIT

Skip to content
Snippets Groups Projects
Commit 54aa0f5d authored by supergonkas's avatar supergonkas Committed by miigotu
Browse files

Forgot this one (#1375)

parent f46f579f
Branches
Tags
No related merge requests found
...@@ -143,6 +143,9 @@ class TransmitTheNetProvider(TorrentProvider): # pylint: disable=too-many-insta ...@@ -143,6 +143,9 @@ class TransmitTheNetProvider(TorrentProvider): # pylint: disable=too-many-insta
if not download_item: if not download_item:
#If the user is seeding #If the user is seeding
download_item = torrent_row.find('a', {'title': 'Currently Seeding Torrent'}) download_item = torrent_row.find('a', {'title': 'Currently Seeding Torrent'})
if not download_item:
#If the user is leeching
download_item = torrent_row.find('a', {'title': 'Currently Leeching Torrent'})
if not download_item: if not download_item:
#If there are none #If there are none
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment