mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2025-08-09 05:19:41 +00:00
Fix get_profile name errors
This commit is contained in:
@@ -153,6 +153,7 @@ async def is_user_authorized(self: 'TelegramClient') -> bool:
|
|||||||
async def get_profile(
|
async def get_profile(
|
||||||
self: 'TelegramClient',
|
self: 'TelegramClient',
|
||||||
profile: 'hints.DialogsLike') -> 'hints.Entity':
|
profile: 'hints.DialogsLike') -> 'hints.Entity':
|
||||||
|
entity = profile
|
||||||
single = not utils.is_list_like(entity)
|
single = not utils.is_list_like(entity)
|
||||||
if single:
|
if single:
|
||||||
entity = (entity,)
|
entity = (entity,)
|
||||||
|
Reference in New Issue
Block a user