From 98e2683b80f82199dfdbed2d65986e6a24d6ee0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdulkadir=20Furkan=20=C5=9Eanl=C4=B1?= Date: Thu, 16 Apr 2026 12:09:40 +0200 Subject: [PATCH] Fix --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 2b87b26..845da07 100755 --- a/main.py +++ b/main.py @@ -4,6 +4,7 @@ import argparse import asyncio import datetime +import html import os import pickle import re @@ -313,7 +314,7 @@ async def message_callback(conn, cursor, youtube, client, room, event): # Escape HTML characters to prevent broken rendering in Matrix escaped_text = html.escape(plain_text) - html_text = f"{escaped_text}" + html_text = f"{escaped_text}" await client.room_send( room_id=room.room_id,