- Layer 53

- Fix bug in generator
- Fix DC switching
- change default server
This commit is contained in:
Ilya P 2016-10-15 13:35:54 +03:00
parent 0752c60082
commit 40c1725e41
83 changed files with 2801 additions and 213 deletions

View file

@ -30,7 +30,7 @@ namespace TeleSharp.TL.Contacts
public override void DeserializeBody(BinaryReader br)
{
contacts = ObjectUtils.DeserializeVector<TLInputPhoneContact>(br);
contacts = (TLVector<TLInputPhoneContact>)ObjectUtils.DeserializeVector<TLInputPhoneContact>(br);
replace = BoolUtil.Deserialize(br);
}