Browse Source

Went a tad overboard

tags/1.0-rc
RogueException 8 years ago
parent
commit
49070f3075
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/Discord.Net.Rpc/Entities/Channels/RpcDMChannel.cs
  2. +1
    -1
      src/Discord.Net.Rpc/Entities/Channels/RpcGroupChannel.cs
  3. +1
    -1
      src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs

+ 1
- 1
src/Discord.Net.Rpc/Entities/Channels/RpcDMChannel.cs View File

@@ -79,7 +79,7 @@ namespace Discord.Rpc
IAsyncEnumerable<IReadOnlyCollection<IMessage>> IMessageChannel.GetMessagesAsync(int limit, CacheMode mode, RequestOptions options)
{
if (mode == CacheMode.AllowDownload)
return GetMessagesAsync(limit, options).ConfigureAwait(false);
return GetMessagesAsync(limit, options);
else
return AsyncEnumerable.Empty<IReadOnlyCollection<IMessage>>();
}


+ 1
- 1
src/Discord.Net.Rpc/Entities/Channels/RpcGroupChannel.cs View File

@@ -78,7 +78,7 @@ namespace Discord.Rpc
IAsyncEnumerable<IReadOnlyCollection<IMessage>> IMessageChannel.GetMessagesAsync(int limit, CacheMode mode, RequestOptions options)
{
if (mode == CacheMode.AllowDownload)
return GetMessagesAsync(limit, options).ConfigureAwait(false);
return GetMessagesAsync(limit, options);
else
return AsyncEnumerable.Empty<IReadOnlyCollection<IMessage>>();
}


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

@@ -114,7 +114,7 @@ namespace Discord.WebSocket
public async Task<IReadOnlyCollection<RestInviteMetadata>> GetInvitesAsync(RequestOptions options = null)
=> await ChannelHelper.GetInvitesAsync(this, Discord, options).ConfigureAwait(false);
public async Task<RestInviteMetadata> CreateInviteAsync(int? maxAge = 3600, int? maxUses = null, bool isTemporary = true, RequestOptions options = null)
=> await ChannelHelper.CreateInviteAsync(this, Discord, maxAge, maxUses, isTemporary, options);.ConfigureAwait(false)
=> await ChannelHelper.CreateInviteAsync(this, Discord, maxAge, maxUses, isTemporary, options).ConfigureAwait(false);

public new abstract SocketGuildUser GetUser(ulong id);



Loading…
Cancel
Save