diff --git a/app/modules/msc_getter.py b/app/modules/msc_getter.py index 401f1d7..c689292 100644 --- a/app/modules/msc_getter.py +++ b/app/modules/msc_getter.py @@ -124,8 +124,10 @@ class MSCGetter(niobot.Module): continue lines.append(f"[{data['title']}]({data['html_url']})") if lines: + text = "\n".join((f"* {ln}" for ln in lines)) + text += "\n\n
To disable automatic MSC linking, please run `h!automsc disable`.
" return await self.bot.send_message( - room, "\n".join((f"* {ln}" for ln in lines)), reply_to=message + room, text, reply_to=message ) @staticmethod