Remove GetContactsAsync changes

This commit is contained in:
CheshireCaat 2020-01-23 06:44:51 +03:00
parent f1bcd62df3
commit b6c7f650da

View file

@ -269,7 +269,7 @@ namespace TLSharp.Core
if (!IsUserAuthorized()) if (!IsUserAuthorized())
throw new InvalidOperationException("Authorize user first!"); throw new InvalidOperationException("Authorize user first!");
var req = new TLRequestGetContacts {Hash = ""}; var req = new TLRequestGetContacts() { Hash = "" };
return await SendRequestAsync<TLContacts>(req); return await SendRequestAsync<TLContacts>(req);
} }