diff --git a/modules/handlers/welcome.py b/modules/handlers/welcome.py index 6c5f5fc..a484ac1 100644 --- a/modules/handlers/welcome.py +++ b/modules/handlers/welcome.py @@ -1,6 +1,7 @@ from app import app from pyrogram import filters from pyrogram.types import ForceReply, ReplyKeyboardMarkup +from classes.holo_user import HoloUser from modules.utils import configGet, configSet, locale, logWrite # Welcome check ================================================================================================================ @@ -14,6 +15,8 @@ async def welcome_pass(app, msg, once_again: bool = True) -> None: * once_again (bool, optional): Set to False if it's the first time as user applies. Defaults to True. """ + holo_user = HoloUser(msg.from_user) + if not once_again: await msg.reply_text(locale("privacy_notice", "message"))