Update Akeno/plugins/deakall.py
Browse files- Akeno/plugins/deakall.py +2 -2
Akeno/plugins/deakall.py
CHANGED
@@ -151,7 +151,7 @@ async def lastall(client: Client, message: Message):
|
|
151 |
elif dialog.top_message.from_user.status == UserStatus.LAST_WEEK:
|
152 |
if user_id:
|
153 |
last_week_count += 1
|
154 |
-
last_week_text += f"User First Name: {first_name} | UserID: {user_id}
|
155 |
elif dialog.top_message.from_user.status == UserStatus.ONLINE:
|
156 |
if user_id:
|
157 |
online_count += 1
|
@@ -160,7 +160,7 @@ async def lastall(client: Client, message: Message):
|
|
160 |
f"LONG_AGO: `{long_ago_count}`\n"
|
161 |
f"OFFLINE: `{offline_count}`\n"
|
162 |
f"RECENTLY: `{recently_count}`\n"
|
163 |
-
f"
|
164 |
f"ONLINE: `{online_count}`\n"
|
165 |
)
|
166 |
await pro.edit_text(count_all_msg)
|
|
|
151 |
elif dialog.top_message.from_user.status == UserStatus.LAST_WEEK:
|
152 |
if user_id:
|
153 |
last_week_count += 1
|
154 |
+
last_week_text += f"• {last_week_count} User First Name: {first_name} | UserID: `{user_id}`\n"
|
155 |
elif dialog.top_message.from_user.status == UserStatus.ONLINE:
|
156 |
if user_id:
|
157 |
online_count += 1
|
|
|
160 |
f"LONG_AGO: `{long_ago_count}`\n"
|
161 |
f"OFFLINE: `{offline_count}`\n"
|
162 |
f"RECENTLY: `{recently_count}`\n"
|
163 |
+
f"{last_week_text}\n"
|
164 |
f"ONLINE: `{online_count}`\n"
|
165 |
)
|
166 |
await pro.edit_text(count_all_msg)
|