Browse Source

Fix merge errors

pull/1562/head
quin lynch 3 years ago
parent
commit
367c1d3006
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net.WebSocket/DiscordShardedClient.cs

+ 1
- 1
src/Discord.Net.WebSocket/DiscordShardedClient.cs View File

@@ -580,7 +580,6 @@ namespace Discord.WebSocket
foreach (var client in _shards) foreach (var client in _shards)
client?.Dispose(); client?.Dispose();
} }
_connectionGroupLock?.Dispose();
} }


_isDisposed = true; _isDisposed = true;
@@ -588,5 +587,6 @@ namespace Discord.WebSocket


return base.DisposeAsync(disposing); return base.DisposeAsync(disposing);
} }
#endregion
} }
} }

Loading…
Cancel
Save