fix exeption handling in case of empty announce list
This commit is contained in:
parent
e351a61964
commit
47b7897402
@ -135,7 +135,10 @@ def createNewTorrent(reuqest):
|
|||||||
try:
|
try:
|
||||||
announce = bcoded[b'announce-list']
|
announce = bcoded[b'announce-list']
|
||||||
except KeyError:
|
except KeyError:
|
||||||
announce = (bcoded[b'announce'], )
|
try:
|
||||||
|
announce = (bcoded[b'announce'], )
|
||||||
|
except KeyError:
|
||||||
|
announce = []
|
||||||
|
|
||||||
is_ours = False
|
is_ours = False
|
||||||
for a in announce:
|
for a in announce:
|
||||||
|
Loading…
Reference in New Issue
Block a user