remotes/1693045480750635534/spooky-22
Aevann1 2022-01-02 02:15:55 +02:00
parent a86cef2ceb
commit e57368d141
1 changed files with 2 additions and 5 deletions

View File

@ -281,7 +281,8 @@ def searchcomments(v):
@app.get("/search/users")
@auth_desired
def searchusers(v):
if not v or v.oldsite: template = ''
else: template = 'CHRISTMAS/'
query = request.values.get("q", '').strip()
@ -302,8 +303,4 @@ def searchusers(v):
next_exists=(len(users)>25)
users=users[:25]
if request.headers.get("Authorization"): return [x.json for x in users]
if not v or v.oldsite: template = ''
else: template = 'CHRISTMAS/'
return render_template(f"{template}search_users.html", v=v, query=query, total=total, page=page, users=users, sort=sort, t=t, next_exists=next_exists)