Changed Resume.LastSeq to uint
This commit is contained in:
@@ -12,6 +12,6 @@ namespace Discord.API.Client.GatewaySocket
|
|||||||
[JsonProperty("session_id")]
|
[JsonProperty("session_id")]
|
||||||
public string SessionId { get; set; }
|
public string SessionId { get; set; }
|
||||||
[JsonProperty("seq")]
|
[JsonProperty("seq")]
|
||||||
public int Sequence { get; set; }
|
public uint Sequence { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ namespace Discord.Net.WebSockets
|
|||||||
|
|
||||||
public partial class GatewaySocket : WebSocket
|
public partial class GatewaySocket : WebSocket
|
||||||
{
|
{
|
||||||
private int _lastSequence;
|
private uint _lastSequence;
|
||||||
private string _sessionId;
|
private string _sessionId;
|
||||||
private string _token;
|
private string _token;
|
||||||
private int _reconnects;
|
private int _reconnects;
|
||||||
|
|||||||
Reference in New Issue
Block a user