mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-12-22 08:49:59 +00:00
Fix banning torrents without uploader ip
Pretty much just for archived torrents
This commit is contained in:
parent
aa3c2ba77b
commit
4eed4971a3
|
@ -157,11 +157,16 @@ def edit_torrent(torrent_id):
|
||||||
|
|
||||||
ipbanned = None
|
ipbanned = None
|
||||||
if editor.is_moderator:
|
if editor.is_moderator:
|
||||||
tbanned = models.Ban.banned(None, torrent.uploader_ip).first()
|
torrent_ip_banned = True
|
||||||
ubanned = True
|
user_ip_banned = True
|
||||||
|
|
||||||
|
# Archived torrents do not have a null uploader_ip
|
||||||
|
if torrent.uploader_ip:
|
||||||
|
torrent_ip_banned = models.Ban.banned(None, torrent.uploader_ip).first()
|
||||||
|
|
||||||
if torrent.user:
|
if torrent.user:
|
||||||
ubanned = models.Ban.banned(None, torrent.user.last_login_ip).first()
|
user_ip_banned = models.Ban.banned(None, torrent.user.last_login_ip).first()
|
||||||
ipbanned = (tbanned and ubanned)
|
ipbanned = (torrent_ip_banned and user_ip_banned)
|
||||||
|
|
||||||
return flask.render_template('edit.html',
|
return flask.render_template('edit.html',
|
||||||
form=form,
|
form=form,
|
||||||
|
|
Loading…
Reference in a new issue