This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
Repositories
Datasets
Forum
实训
竞赛
大数据
应用
Register
Sign In
youys
/
Discord.Net
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
34
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
Changed Resume.LastSeq to uint
pull/22/merge
RogueException
9 years ago
parent
672cde4654
commit
8391d57f83
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Discord.Net/API/Client/GatewaySocket/Commands/Resume.cs
+1
-1
src/Discord.Net/Net/WebSockets/GatewaySocket.cs
+ 1
- 1
src/Discord.Net/API/Client/GatewaySocket/Commands/Resume.cs
View File
@@ -12,6 +12,6 @@ namespace Discord.API.Client.GatewaySocket
[JsonProperty("session_id")]
public string SessionId { get; set; }
[JsonProperty("seq")]
public int Sequence { get; set; }
public
u
int Sequence { get; set; }
}
}
+ 1
- 1
src/Discord.Net/Net/WebSockets/GatewaySocket.cs
View File
@@ -23,7 +23,7 @@ namespace Discord.Net.WebSockets
public partial class GatewaySocket : WebSocket
{
private int _lastSequence;
private
u
int _lastSequence;
private string _sessionId;
private string _token;
private int _reconnects;
Write
Preview
Loading…
Cancel
Save