Fix get_profile name errors

This commit is contained in:
Lonami Exo 2022-03-02 12:57:44 +01:00
parent 7413b6a630
commit 07aadf9fbf

View File

@ -153,6 +153,7 @@ async def is_user_authorized(self: 'TelegramClient') -> bool:
async def get_profile(
self: 'TelegramClient',
profile: 'hints.DialogsLike') -> 'hints.Entity':
entity = profile
single = not utils.is_list_like(entity)
if single:
entity = (entity,)