diff --git a/misskaty/plugins/chatbot_ai.py b/misskaty/plugins/chatbot_ai.py
index 57e24a22..cc6d12ab 100644
--- a/misskaty/plugins/chatbot_ai.py
+++ b/misskaty/plugins/chatbot_ai.py
@@ -52,7 +52,7 @@ async def get_openai_stream_response(is_stream, key, base_url, model, messages,
num = 0
await bmsg.edit_msg(f"{html.escape(answer)}\n\nPowered by: GPT 4o")
except MessageTooLong:
- answerlink = await privatebinapi.send_async("https://bin.yasirweb.eu.org", text=html.escape(f"{answer}"), expiration="1week", formatting="markdown")
+ answerlink = await privatebinapi.send_async("https://bin.yasirweb.eu.org", text=answer, expiration="1week", formatting="markdown")
await bmsg.edit_msg(
strings("answers_too_long").format(answerlink=answerlink.get("full_url")),
disable_web_page_preview=True,
diff --git a/misskaty/plugins/dev.py b/misskaty/plugins/dev.py
index 97465b18..d797a088 100644
--- a/misskaty/plugins/dev.py
+++ b/misskaty/plugins/dev.py
@@ -146,7 +146,7 @@ async def log_file(_, ctx: Message, strings):
try:
with open("MissKatyLogs.txt", "r") as file:
content = file.read()
- pastelog = await privatebinapi.send_async("https://bin.yasirweb.eu.org", text=content, expiration="1week", formatting="sourcecode")
+ pastelog = await privatebinapi.send_async("https://bin.yasirweb.eu.org", text=content, expiration="1week", formatting="syntaxhighlighting")
await msg.edit_msg(
f"Here the Logs\nlog size: {get_readable_file_size(os.path.getsize('MissKatyLogs.txt'))}"
)