Browse Source

Fixed single-server connects

tags/docs-0.9
RogueException 9 years ago
parent
commit
23ff457d37
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.Audio/AudioService.cs

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

@@ -140,7 +140,7 @@ namespace Discord.Audio
if (!Config.EnableMultiserver) if (!Config.EnableMultiserver)
{ {
await (_defaultClient as SimpleAudioClient).Join(channel).ConfigureAwait(false);
await (_defaultClient as SimpleAudioClient).Connect(channel, false).ConfigureAwait(false);
return _defaultClient; return _defaultClient;
} }
else else


Loading…
Cancel
Save