diff --git a/src/Discord.Net/DiscordClient.cs b/src/Discord.Net/DiscordClient.cs
index 239c7c073..92f0fbe26 100644
--- a/src/Discord.Net/DiscordClient.cs
+++ b/src/Discord.Net/DiscordClient.cs
@@ -66,9 +66,9 @@ namespace Discord
/// Gets a collection of all servers this client is a member of.
public IEnumerable Servers => _servers.Select(x => x.Value);
// /// Gets a collection of all channels this client is a member of.
- // public IEnumerable Channels => _servers.Select(x => x.Value);
+ // public IEnumerable Channels => _channels.Select(x => x.Value);
/// Gets a collection of all private channels this client is a member of.
- public IEnumerable PrivateChannels => _channels.Select(x => x.Value);
+ public IEnumerable PrivateChannels => _privateChannels.Select(x => x.Value);
/// Gets a collection of all voice regions currently offered by Discord.
public IEnumerable Regions => _regions.Select(x => x.Value);