added check for blank tracker
This commit is contained in:
parent
976e36316c
commit
622dedcd44
@ -44,7 +44,7 @@ class Qbt:
|
|||||||
self.torrentlist = {}
|
self.torrentlist = {}
|
||||||
self.torrentlist = self.qbt_client.torrents_info()
|
self.torrentlist = self.qbt_client.torrents_info()
|
||||||
listqbitapiinfo(self)
|
listqbitapiinfo(self)
|
||||||
listfirsttor(self)
|
#listfirsttor(self)
|
||||||
buildtorlist(self)
|
buildtorlist(self)
|
||||||
torrentcount(self)
|
torrentcount(self)
|
||||||
torprocessor(self)
|
torprocessor(self)
|
||||||
|
3
qlist.py
3
qlist.py
@ -6,6 +6,9 @@ def buildtorlist(self):
|
|||||||
while self.torrentlist:
|
while self.torrentlist:
|
||||||
torrent = self.torrentlist.pop()
|
torrent = self.torrentlist.pop()
|
||||||
self.tl.debug(f'{torrent["name"]} {torrent["infohash_v1"]}')
|
self.tl.debug(f'{torrent["name"]} {torrent["infohash_v1"]}')
|
||||||
|
if torrent['tracker'] == '':
|
||||||
|
self.tl.warning(f"Torrent doesn't have a tracker{torrent['name']} [{torrent['tracker']}]hash: {torrent['hash']}")
|
||||||
|
break
|
||||||
if self.tracker_whitelist['iptorrents-empirehost'] in torrent['tracker']:
|
if self.tracker_whitelist['iptorrents-empirehost'] in torrent['tracker']:
|
||||||
self.tl.debug(f'Protected torrent: {torrent["tracker"]}hash: {torrent["hash"]}')
|
self.tl.debug(f'Protected torrent: {torrent["tracker"]}hash: {torrent["hash"]}')
|
||||||
self.protected_count += 1
|
self.protected_count += 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user