sochix / TLSharp

Telegram client library implemented in C#
1.01k stars 380 forks source link

Property "About" (Bio in Telegram) in TLUserFull always is null #916

Open flyagaSL opened 4 years ago

flyagaSL commented 4 years ago

When I get full information about a user, the "About" field is always NULL. The code snippet below.

foreach (var memberUser in chatUsers)
                                {
                                    var rq = new TeleSharp.TL.Users.TLRequestGetFullUser { Id = new TLInputUser { UserId = memberUser.Id, AccessHash = (long)memberUser.AccessHash } };

                                    TLUserFull rUser = await client.SendRequestAsync<TLUserFull>(rq); 
                                }

Sorry about my English