Browse Source

A little fix (whoopsie)

pull/2436/head
Fokusnikh 2 years ago
parent
commit
a4fe3ef354
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.WebSocket/Entities/Channels/SocketForumChannel.cs

+ 1
- 1
src/Discord.Net.WebSocket/Entities/Channels/SocketForumChannel.cs View File

@@ -105,7 +105,7 @@ namespace Discord.WebSocket

#region IForumChannel
async Task<IReadOnlyCollection<IThreadChannel>> IForumChannel.GetActiveThreadsAsync(RequestOptions options)
=> await GetActiveThreadsInChannelAsync(options).ConfigureAwait(false);
=> await GetActiveThreadsAsync(options).ConfigureAwait(false);
async Task<IReadOnlyCollection<IThreadChannel>> IForumChannel.GetPublicArchivedThreadsAsync(int? limit, DateTimeOffset? before, RequestOptions options)
=> await GetPublicArchivedThreadsAsync(limit, before, options).ConfigureAwait(false);
async Task<IReadOnlyCollection<IThreadChannel>> IForumChannel.GetPrivateArchivedThreadsAsync(int? limit, DateTimeOffset? before, RequestOptions options)


Loading…
Cancel
Save