From 423a47ca035f1b0df37dcccfe9685c7ad602182a Mon Sep 17 00:00:00 2001
From: Lyreplus <lyreplus@gmail.com>
Date: Thu, 7 Nov 2024 14:26:38 +0100
Subject: [PATCH] fix:typo

---
 bot.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bot.py b/bot.py
index 237666c..2467e5f 100644
--- a/bot.py
+++ b/bot.py
@@ -96,9 +96,9 @@ async def get_chat_id_topic(update: Update, context: ContextTypes.DEFAULT_TYPE):
     topic_id = update.message.message_thread_id
 
     if topic_id is None:
-        update.message.reply_test(f"Id della chat: {chat_id}")
+        update.message.reply_text(f"Id della chat: {chat_id}")
     else:
-        update.message.reply_test(f"Id della chat: {chat_id}, id del topic: {topic_id}")
+        update.message.reply_text(f"Id della chat: {chat_id}, id del topic: {topic_id}")
 
 
 if __name__ == "__main__":