From 750dbef33b521cca0ebdc9232762be8b00c65a3b Mon Sep 17 00:00:00 2001 From: Wizou <11647984+wiz0u@users.noreply.github.com> Date: Fri, 6 Jan 2023 13:29:33 +0100 Subject: [PATCH] default value for offset_topic arg --- src/TL.SchemaFuncs.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TL.SchemaFuncs.cs b/src/TL.SchemaFuncs.cs index 83fa378..a940a30 100644 --- a/src/TL.SchemaFuncs.cs +++ b/src/TL.SchemaFuncs.cs @@ -4298,7 +4298,7 @@ namespace TL }); /// See - public static Task Channels_GetForumTopics(this Client client, InputChannelBase channel, int offset_topic, DateTime offset_date = default, int offset_id = default, int limit = int.MaxValue, string q = null) + public static Task Channels_GetForumTopics(this Client client, InputChannelBase channel, DateTime offset_date = default, int offset_id = default, int offset_topic = default, int limit = int.MaxValue, string q = null) => client.Invoke(new Channels_GetForumTopics { flags = (Channels_GetForumTopics.Flags)(q != null ? 0x1 : 0),