Fix banning anonymous torrents

We miss ye, testing
This commit is contained in:
Anna-Maria Meriniemi 2017-08-26 02:36:38 +03:00 committed by GitHub
parent f8a314df4f
commit aa3c2ba77b
1 changed files with 2 additions and 1 deletions

View File

@ -98,7 +98,8 @@ def edit_torrent(torrent_id):
if not editor or not (editor is torrent.user or editor.is_moderator):
flask.abort(403)
if editor and editor.is_moderator and editor.level > torrent.user.level:
torrent_user_level = torrent.user and torrent.user.level
if editor and editor.is_moderator and (torrent_user_level is None or editor.level > torrent_user_level):
ban_form = forms.BanForm()
if flask.request.method == 'POST' and form.submit.data and form.validate():