Add chat id

This commit is contained in:
yasir 2022-12-08 12:05:29 +07:00
parent c50dbb757a
commit e8e2b649ff
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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)