Update roadmap and remove unnecessary newline

This commit is contained in:
Tulir Asokan
2018-03-09 17:49:26 +02:00
parent b1c85d5cda
commit 85a4982ad9
2 changed files with 2 additions and 19 deletions
+1 -1
View File
@@ -838,7 +838,7 @@ class Portal:
if config["bridge.inline_images"] and (evt.message or evt.fwd_from or evt.reply_to_msg_id):
text, html, relates_to = await formatter.telegram_to_matrix(
evt, source, self.main_intent,
prefix_html=f"<img src='{file.mxc}' alt='Inline Telegram photo'/><br/>\n",
prefix_html=f"<img src='{file.mxc}' alt='Inline Telegram photo'/><br/>",
prefix_text="Inline image: ")
await intent.set_typing(self.mxid, is_typing=False)
return await intent.send_text(self.mxid, text, html=html, relates_to=relates_to)