From 20858063787ce90ffe3bc307be082569c4a46fa2 Mon Sep 17 00:00:00 2001 From: CheshireCaat Date: Thu, 23 Jan 2020 08:29:46 +0300 Subject: [PATCH] Revert "Added methods for working with contacts." This reverts commit 9376114b26223da479cb75f3790a8751ab2fb048. --- TLSharp.Core/TelegramClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TLSharp.Core/TelegramClient.cs b/TLSharp.Core/TelegramClient.cs index 97d0f6d..d86b349 100644 --- a/TLSharp.Core/TelegramClient.cs +++ b/TLSharp.Core/TelegramClient.cs @@ -269,7 +269,7 @@ namespace TLSharp.Core if (!IsUserAuthorized()) throw new InvalidOperationException("Authorize user first!"); - var req = new TLRequestGetContacts {Hash = ""}; + var req = new TLRequestGetContacts() { Hash = "" }; return await SendRequestAsync(req); }