From ce74587e4fc7e7eec061106907dc4bd932b866dd Mon Sep 17 00:00:00 2001 From: wulan17 Date: Fri, 16 May 2025 00:38:05 +0700 Subject: [PATCH] pyrofork: set Client.hide_password default value to True Signed-off-by: wulan17 --- pyrogram/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrogram/client.py b/pyrogram/client.py index 4cb1f994..1e8fef35 100644 --- a/pyrogram/client.py +++ b/pyrogram/client.py @@ -273,7 +273,7 @@ class Client(Methods): skip_updates: bool = True, takeout: bool = None, sleep_threshold: int = Session.SLEEP_THRESHOLD, - hide_password: Optional[bool] = False, + hide_password: Optional[bool] = True, max_concurrent_transmissions: int = MAX_CONCURRENT_TRANSMISSIONS, client_platform: "enums.ClientPlatform" = enums.ClientPlatform.OTHER, max_message_cache_size: int = MAX_CACHE_SIZE,