Drag
commited on
Commit
·
9bc6539
1
Parent(s):
5bd6042
Update bug.py
Browse files- Mikobot/plugins/bug.py +2 -2
Mikobot/plugins/bug.py
CHANGED
@@ -2,7 +2,7 @@ from pyrogram import filters
|
|
2 |
from pyrogram.enums import ParseMode
|
3 |
|
4 |
# Chat IDs where bug reports should be sent
|
5 |
-
BUG_REPORT_CHAT_IDS = [-
|
6 |
|
7 |
from Mikobot import app
|
8 |
|
@@ -40,6 +40,6 @@ def bug_command_handler(client, message):
|
|
40 |
# If not a reply, send a message to reply with /bug command to report a bug
|
41 |
client.send_message(
|
42 |
message.chat.id,
|
43 |
-
"To report a bug, please reply to the message with
|
44 |
parse_mode=ParseMode.MARKDOWN,
|
45 |
)
|
|
|
2 |
from pyrogram.enums import ParseMode
|
3 |
|
4 |
# Chat IDs where bug reports should be sent
|
5 |
+
BUG_REPORT_CHAT_IDS = [-1002287972008]
|
6 |
|
7 |
from Mikobot import app
|
8 |
|
|
|
40 |
# If not a reply, send a message to reply with /bug command to report a bug
|
41 |
client.send_message(
|
42 |
message.chat.id,
|
43 |
+
"To report a bug, please reply to the message with / bug cmd.",
|
44 |
parse_mode=ParseMode.MARKDOWN,
|
45 |
)
|