remotes/1693045480750635534/spooky-22
Aevann1 2022-02-25 12:54:00 +02:00
parent 1d6190009d
commit 36a01f05c9
1 changed files with 3 additions and 0 deletions

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: