mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
Add chat id
This commit is contained in:
parent
c50dbb757a
commit
e8e2b649ff
2 changed files with 2 additions and 2 deletions
|
|
@ -77,7 +77,7 @@ async def get_filterss(_, message):
|
|||
if not _filters:
|
||||
return await message.reply_text("**No filters in this chat.**")
|
||||
_filters.sort()
|
||||
msg = f"List of filters in {message.chat.title}\n"
|
||||
msg = f"List of filters in {message.chat.title} - {message.chat.id}\n"
|
||||
for _filter in _filters:
|
||||
msg += f"**-** `{_filter}`\n"
|
||||
await message.reply_text(msg)
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ async def get_notes(_, message):
|
|||
if not _notes:
|
||||
return await message.reply("**No notes in this chat.**")
|
||||
_notes.sort()
|
||||
msg = f"List of notes in {message.chat.title}\n"
|
||||
msg = f"List of notes in {message.chat.title} - {message.chat.id}\n"
|
||||
for note in _notes:
|
||||
msg += f"**-** `{note}`\n"
|
||||
await message.reply(msg)
|
||||
|
|
|
|||
Loading…
Reference in a new issue