How to delete my avatar in WTelegramClient

Viewed 39

Currently, I am using WTelegramClient library on C#; how can I delete my telegram account avatar?

1 Answers

Easy:

await client.Photos_UpdateProfilePhoto(null);

(a null InputPhoto means inputPhotoEmpty)

Related