remotes/1693045480750635534/spooky-22
Aevann1 2021-10-28 03:42:59 +02:00
parent 40dc1439f3
commit a6f7a5ba19
1 changed files with 1 additions and 0 deletions

View File

@ -377,6 +377,7 @@ def followers(username, v):
@auth_required
def following(username, v):
u = get_user(username, v=v)
if request.host == 'rdrama.net' and u.id == 147: abort(404)
users = [x.target for x in u.following]
return render_template("following.html", v=v, u=u, users=users)