Browse Source

Change return type on the interface

pull/1588/head
Paulo GitHub 4 years ago
parent
commit
f80dde7ace
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Core/Audio/IAudioClient.cs

+ 1
- 1
src/Discord.Net.Core/Audio/IAudioClient.cs View File

@@ -22,7 +22,7 @@ namespace Discord.Audio
int UdpLatency { get; }

/// <summary>Gets the current audio streams.</summary>
Dictionary<ulong, AudioInStream> GetStreams();
IReadOnlyDictionary<ulong, AudioInStream> GetStreams();

Task StopAsync();
Task SetSpeakingAsync(bool value);


Loading…
Cancel
Save