diff --git a/misskaty/plugins/filters.py b/misskaty/plugins/filters.py index e8bf764a..91f83f35 100644 --- a/misskaty/plugins/filters.py +++ b/misskaty/plugins/filters.py @@ -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) diff --git a/misskaty/plugins/notes.py b/misskaty/plugins/notes.py index 9685840a..94c81442 100644 --- a/misskaty/plugins/notes.py +++ b/misskaty/plugins/notes.py @@ -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)