diff --git a/README.md b/README.md index b50a3b1..e1483d3 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ In the API, Telegram uses some terms/classnames that can be confusing as they di - `Peer` : Either a `Chat`, `Channel` or a private chat with a `User` - Dialog : The current status of a chat with a `Peer` *(draft, last message, unread count, pinned...)* - DC (DataCenter) : There are a few datacenters depending on where in the world the user (or an uploaded media file) is from. -- Access Hash : Telegram requires you to provide a specific `access_hash` for users, channels, and other resources before interacting with them. See [FAQ #4](https://github.com/wiz0u/WTelegramClient/blob/master/FAQ.md) to learn more about it. +- Access Hash : Telegram requires you to provide a specific `access_hash` for users, channels, and other resources before interacting with them. See [FAQ #4](https://github.com/wiz0u/WTelegramClient/blob/master/FAQ.md#access-hash) to learn more about it. # Other things to know diff --git a/src/Client.cs b/src/Client.cs index 5a9dbb6..0635949 100644 --- a/src/Client.cs +++ b/src/Client.cs @@ -1134,7 +1134,7 @@ namespace WTelegram } } - /// Helper function to send a text or media message more easily + /// Helper function to send a media message more easily /// Destination of message (chat group, channel, user chat, etc..) /// Caption for the media (in plain text) or /// Media file already uploaded to TG (see UploadFileAsync) diff --git a/src/TL.Schema.cs b/src/TL.Schema.cs index 96db3d0..6a94edc 100644 --- a/src/TL.Schema.cs +++ b/src/TL.Schema.cs @@ -12193,7 +12193,7 @@ namespace TL [TLDef(0xE926D63E)] public class Account_ResetPasswordOk : Account_ResetPasswordResult { } - /// A sponsored message See + /// A sponsored message. See [TLDef(0xD151E19A)] public class SponsoredMessage : IObject { @@ -15318,7 +15318,6 @@ namespace TL }); /// Reports some messages from a user in a supergroup as spam; requires administrator rights in the supergroup See Possible codes: 400 (details) /// Supergroup - /// user that sent the spam messages /// IDs of spam messages public static Task Channels_ReportSpam(this Client client, InputChannelBase channel, InputPeer participant, int[] id) => client.CallAsync(new Channels_ReportSpam diff --git a/src/TL.Table.cs b/src/TL.Table.cs index 2098b7e..5a3ec92 100644 --- a/src/TL.Table.cs +++ b/src/TL.Table.cs @@ -6,7 +6,7 @@ namespace TL { public static class Layer { - public const int Version = 135; // fetched 27/11/2021 01:15:53 + public const int Version = 135; // fetched 08/12/2021 14:03:48 internal const uint VectorCtor = 0x1CB5C415; internal const uint NullCtor = 0x56730BCC; internal const uint RpcResultCtor = 0xF35C6D01;