mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-10 18:06:37 +02:00
Remove before argument from GetGuildThreadsAsync
This commit is contained in:
parent
70aa3a3d3e
commit
cefb6b8589
2 changed files with 0 additions and 3 deletions
|
@ -86,7 +86,6 @@ public class ExportChannelsCommand : ExportCommandBase
|
|||
var thread in Discord.GetChannelThreadsAsync(
|
||||
channels.ToArray(),
|
||||
ThreadInclusionMode == ThreadInclusionMode.All,
|
||||
Before,
|
||||
After,
|
||||
cancellationToken
|
||||
)
|
||||
|
|
|
@ -312,7 +312,6 @@ public class DiscordClient(string token)
|
|||
var channel in await GetChannelThreadsAsync(
|
||||
channels,
|
||||
includeArchived,
|
||||
before,
|
||||
after,
|
||||
cancellationToken
|
||||
)
|
||||
|
@ -325,7 +324,6 @@ public class DiscordClient(string token)
|
|||
public async IAsyncEnumerable<Channel> GetChannelThreadsAsync(
|
||||
Channel[] channels,
|
||||
bool includeArchived = false,
|
||||
Snowflake? before = null,
|
||||
Snowflake? after = null,
|
||||
[EnumeratorCancellation] CancellationToken cancellationToken = default
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue