mirror of
https://github.com/ProjectSynthoria/SynthoriaArchive.git
synced 2025-03-12 07:26:54 +02:00
Fix banning anonymous torrents
We miss ye, testing
This commit is contained in:
parent
f8a314df4f
commit
aa3c2ba77b
1 changed files with 2 additions and 1 deletions
|
@ -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():
|
||||
|
|
Loading…
Add table
Reference in a new issue