Bumped LargeThreshold up to 100 when enabled, to match client behavor

This commit is contained in:
Brandon Smith
2015-10-27 14:55:47 -03:00
parent f8319f10e3
commit dd7e570b60

View File

@@ -27,7 +27,7 @@ namespace Discord.Net.WebSockets
msg.Payload.Token = token;
msg.Payload.Properties["$device"] = "Discord.Net";
if (_client.Config.UseLargeThreshold)
msg.Payload.LargeThreshold = 50;
msg.Payload.LargeThreshold = 100;
msg.Payload.Compress = true;
QueueMessage(msg);
}