diff --git a/src/Discord.Net/DiscordClient.cs b/src/Discord.Net/DiscordClient.cs
index 70778475c..bd4ebfd10 100644
--- a/src/Discord.Net/DiscordClient.cs
+++ b/src/Discord.Net/DiscordClient.cs
@@ -497,14 +497,14 @@ namespace Discord
//Connection
/// Connects to the Discord server with the provided token.
- public async Task Connect(string token)
+ public async Task Connect(string token)
{
await Disconnect();
if (_isDebugMode)
RaiseOnDebugMessage(DebugMessageType.Connection, $"DataSocket is using cached token.");
- return await ConnectInternal(token);
+ await ConnectInternal(token);
}
/// Connects to the Discord server with the provided email and password.
/// Returns a token for future connections.