Spaces:
Sleeping
Sleeping
iamgojoof6eyes
commited on
Commit
·
2abd373
1
Parent(s):
e46bee0
will look.....
Browse files- Powers/plugins/start.py +4 -4
Powers/plugins/start.py
CHANGED
@@ -123,7 +123,7 @@ Join my [News Channel](https://t.me/gojo_updates) to get information on all the
|
|
123 |
kb = ikb([
|
124 |
[("Connect me to pm",
|
125 |
f"https://t.me/{Config.BOT_USERNAME}?start=start",
|
126 |
-
"url"
|
127 |
)]
|
128 |
])
|
129 |
await m.reply_photo(
|
@@ -145,7 +145,7 @@ Hit /help to find out more about how to use me in my full potential!
|
|
145 |
|
146 |
Join my [News Channel](http://t.me/gojo_updates) to get information on all the latest updates."""
|
147 |
|
148 |
-
await q.
|
149 |
caption=cpt,
|
150 |
reply_markup=(await gen_start_kb(q.message)),
|
151 |
|
@@ -172,7 +172,7 @@ Commands available:
|
|
172 |
* /start: Start the bot
|
173 |
* /help: Give's you this message."""
|
174 |
|
175 |
-
await q.
|
176 |
caption=cpt,
|
177 |
reply_markup=keyboard,
|
178 |
)
|
@@ -268,7 +268,7 @@ async def get_module_info(_, q: CallbackQuery):
|
|
268 |
help_kb = HELP_COMMANDS[module]["buttons"] + [
|
269 |
[("« " + "Back", "commands")],
|
270 |
]
|
271 |
-
await q.
|
272 |
caption=help_msg,
|
273 |
parse_mode="markdown",
|
274 |
reply_markup=ikb(help_kb),
|
|
|
123 |
kb = ikb([
|
124 |
[("Connect me to pm",
|
125 |
f"https://t.me/{Config.BOT_USERNAME}?start=start",
|
126 |
+
"url"
|
127 |
)]
|
128 |
])
|
129 |
await m.reply_photo(
|
|
|
145 |
|
146 |
Join my [News Channel](http://t.me/gojo_updates) to get information on all the latest updates."""
|
147 |
|
148 |
+
await q.edit_message_caption(
|
149 |
caption=cpt,
|
150 |
reply_markup=(await gen_start_kb(q.message)),
|
151 |
|
|
|
172 |
* /start: Start the bot
|
173 |
* /help: Give's you this message."""
|
174 |
|
175 |
+
await q.edit_message_caption(
|
176 |
caption=cpt,
|
177 |
reply_markup=keyboard,
|
178 |
)
|
|
|
268 |
help_kb = HELP_COMMANDS[module]["buttons"] + [
|
269 |
[("« " + "Back", "commands")],
|
270 |
]
|
271 |
+
await q.edit_message_caption(
|
272 |
caption=help_msg,
|
273 |
parse_mode="markdown",
|
274 |
reply_markup=ikb(help_kb),
|