diff --git a/main.py b/main.py index 512a69b..74ea58f 100644 --- a/main.py +++ b/main.py @@ -144,7 +144,7 @@ async def list_tags(msg: Message): lines = [] for tag in tags: entry = f'- {tag} [/del_{tag}]' - if len('\n'.join(lines + [entry])) > 4096: + if len('\n'.join(lines + [entry])) > 2000: lines = "\n".join(lines) await msg.reply(f'Monitored tags:\n\n{lines}') lines = [entry]