fix that anonymous pastebins returned user None instead of Anonymous
This commit is contained in:
parent
c3a8994769
commit
92ca08c1ed
2
app.py
2
app.py
@ -668,7 +668,7 @@ def upload_pastebin():
|
||||
vanity = shortuuid.uuid()[:8]
|
||||
print(f"Generated vanity: {vanity}")
|
||||
|
||||
user_id = current_user.id if current_user.is_authenticated else None
|
||||
user_id = current_user.id if current_user.is_authenticated else Anonymous
|
||||
print(f"User ID: {user_id}")
|
||||
|
||||
db = get_db()
|
||||
|
Loading…
Reference in New Issue
Block a user