users: fix bug where is_following isn't set for private users

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-11-03 03:18:34 -05:00
parent 0b3fae81d6
commit 6eec00285f
1 changed files with 2 additions and 2 deletions

View File

@ -677,7 +677,7 @@ def u_username(username, v=None):
if not u.is_visible_to(v):
if g.is_api_or_xhr or request.path.endswith(".json"):
abort(403, "This userpage is private")
return render_template("userpage_private.html", u=u, v=v), 403
return render_template("userpage_private.html", u=u, v=v, is_following=is_following), 403
if v and hasattr(u, 'is_blocking') and u.is_blocking:
@ -747,7 +747,7 @@ def u_username_comments(username, v=None):
if not u.is_visible_to(v):
if g.is_api_or_xhr or request.path.endswith(".json"):
abort(403, "This userpage is private")
return render_template("userpage_private.html", u=u, v=v), 403
return render_template("userpage_private.html", u=u, v=v, is_following=is_following), 403
if v and hasattr(u, 'is_blocking') and u.is_blocking:
if g.is_api_or_xhr or request.path.endswith(".json"):