From 40c25aac4a67da54511ec1fc8c675f2460046539 Mon Sep 17 00:00:00 2001 From: Corrado Mulas Date: Fri, 19 Jun 2026 15:22:45 +0200 Subject: [PATCH] Fix path --- src/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index fe11418..1d45db6 100644 --- a/src/main.py +++ b/src/main.py @@ -83,7 +83,7 @@ async def main(): lower_text = raw_text.lower() if lower_text == '!ping': - await event.respond('PONG -> IMS GroupFactory Userbot') + await event.respond('PONG - GroupFactory Service Userbot') return if lower_text == '!help': @@ -361,6 +361,8 @@ async def main(): # Start the client await client.start() logger.info("Telegram client started successfully") + if staff_chat_id: + await client.send_message(staff_chat_id, "GroupFactory Service Userbot started.") # Run the Telegram client and the REST API concurrently. If either # exits, cancel the other so the process shuts down cleanly.