Fixed bug in authenticate_artist

pull/440/head
Christopher Usher 9 months ago
parent 5c10944e7a
commit cb593afd48

@ -83,7 +83,7 @@ def authenticate_artist(f):
@wraps(f)
def artist_auth_wrapper(*args, **kwargs):
if app.no_authentication:
return f(*args, editor='NOT_AUTH', **kwargs)
return f(*args, artist='NOT_AUTH', **kwargs)
message, code = check_user(flask.request, 'artist')
if code != 200:

Loading…
Cancel
Save