Ok
Browse files
Detection/manager/builder_session.py
CHANGED
@@ -51,9 +51,10 @@ async def show_session(client, message):
|
|
51 |
& filters.regex(r"^(Start Sessions)$")
|
52 |
)
|
53 |
async def start_session(client, message):
|
|
|
54 |
try:
|
55 |
confirm_sesi = await message.chat.ask(
|
56 |
-
"Please send your SESSION_STRING (from
|
57 |
"Format should be: `asdfghkklxxxxx`\n\n"
|
58 |
"This not responding admins, You can try again issues\n"
|
59 |
"Type /cancel to abort",
|
@@ -95,7 +96,7 @@ async def start_session(client, message):
|
|
95 |
else:
|
96 |
await client.send_message(
|
97 |
message.chat.id,
|
98 |
-
"haven't found session yet,
|
99 |
reply_markup=ReplyKeyboardRemove()
|
100 |
)
|
101 |
|
|
|
51 |
& filters.regex(r"^(Start Sessions)$")
|
52 |
)
|
53 |
async def start_session(client, message):
|
54 |
+
user_id = message.from_user.id
|
55 |
try:
|
56 |
confirm_sesi = await message.chat.ask(
|
57 |
+
"Please send your SESSION_STRING (from Show Sessions):\n\n"
|
58 |
"Format should be: `asdfghkklxxxxx`\n\n"
|
59 |
"This not responding admins, You can try again issues\n"
|
60 |
"Type /cancel to abort",
|
|
|
96 |
else:
|
97 |
await client.send_message(
|
98 |
message.chat.id,
|
99 |
+
"haven't found session yet, You want to try create detection",
|
100 |
reply_markup=ReplyKeyboardRemove()
|
101 |
)
|
102 |
|