This commit is contained in:
Ilya P 2016-10-11 16:28:57 +03:00
parent a14dfdc1fe
commit 2ffa954246
9 changed files with 225 additions and 37 deletions

View file

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