Update main.py
Browse files
main.py
CHANGED
@@ -53,11 +53,11 @@ async def get_user(user_id=None):
|
|
53 |
"dc_id": get_users.dc_id,
|
54 |
"username": get_users.username if get_users else None,
|
55 |
"photo": {
|
56 |
-
"small_file_id": get_users.small_file_id,
|
57 |
-
"small_photo_unique_id": get_users.small_photo_unique_id,
|
58 |
-
"big_file_id": get_users.big_file_id,
|
59 |
-
"has_animation": get_users.has_animation,
|
60 |
-
"is_personal": get_users.is_personal
|
61 |
}
|
62 |
}
|
63 |
|
|
|
53 |
"dc_id": get_users.dc_id,
|
54 |
"username": get_users.username if get_users else None,
|
55 |
"photo": {
|
56 |
+
"small_file_id": get_users.photo.small_file_id,
|
57 |
+
"small_photo_unique_id": get_users.photo.small_photo_unique_id,
|
58 |
+
"big_file_id": get_users.photo.big_file_id,
|
59 |
+
"has_animation": get_users.photo.has_animation,
|
60 |
+
"is_personal": get_users.photo.is_personal
|
61 |
}
|
62 |
}
|
63 |
|