Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
Β·
59fe4e1
1
Parent(s):
f65dc76
Minnor changes
Browse files- Powers/plugins/info.py +2 -2
Powers/plugins/info.py
CHANGED
|
@@ -130,7 +130,7 @@ async def chat_info(c: Gojo, chat, already=False):
|
|
| 130 |
username = chat.username
|
| 131 |
total_bot, total_admin, total_bot_admin, total_banned = await count(c, chat.id)
|
| 132 |
title = chat.title
|
| 133 |
-
type_ = await c_type(c, chat_id
|
| 134 |
is_scam = chat.is_scam
|
| 135 |
is_fake = chat.is_fake
|
| 136 |
description = chat.description
|
|
@@ -153,7 +153,7 @@ async def chat_info(c: Gojo, chat, already=False):
|
|
| 153 |
|
| 154 |
<b>π ID</b>: <code>{chat_id}</code>
|
| 155 |
<b>π Chat Title</b>: {title}
|
| 156 |
-
<b>β¨ Chat Type</b>: {type_}
|
| 157 |
<b>π DataCentre ID</b>: {dc_id}
|
| 158 |
<b>π Username</b>: {("@" + username) if username else "NA"}
|
| 159 |
<b>βοΈ Administrators</b>: {total_admin}
|
|
|
|
| 130 |
username = chat.username
|
| 131 |
total_bot, total_admin, total_bot_admin, total_banned = await count(c, chat.id)
|
| 132 |
title = chat.title
|
| 133 |
+
type_ = await c_type(c, chat_id)
|
| 134 |
is_scam = chat.is_scam
|
| 135 |
is_fake = chat.is_fake
|
| 136 |
description = chat.description
|
|
|
|
| 153 |
|
| 154 |
<b>π ID</b>: <code>{chat_id}</code>
|
| 155 |
<b>π Chat Title</b>: {title}
|
| 156 |
+
<b>β¨ Chat Type</b>: {type_.upper()}
|
| 157 |
<b>π DataCentre ID</b>: {dc_id}
|
| 158 |
<b>π Username</b>: {("@" + username) if username else "NA"}
|
| 159 |
<b>βοΈ Administrators</b>: {total_admin}
|