This commit is contained in:
Aevann1 2022-02-25 12:54:00 +02:00
parent aaa32732ae
commit a13b1bf9c2

View file

@ -886,6 +886,9 @@ def u_username_info(username, v=None):
@auth_required
def u_user_id_info(id, v=None):
try: id = int(id)
except: abort(404)
user=get_account(id, v=v)
if hasattr(user, 'is_blocking') and user.is_blocking: