This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
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
Fixed GUILD_UPDATE crash
tags/docs-0.9
Brandon Smith
10 years ago
parent
6abd07e0bf
commit
ae4b519b7a
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Discord.Net/API/Models/WebSocketEvents.cs
+1
-1
Discord.Net/DiscordWebSocket.cs
+ 1
- 1
Discord.Net/API/Models/WebSocketEvents.cs
View File
@@ -27,7 +27,7 @@ namespace Discord.API.Models
//Servers
public sealed class GuildCreate : ExtendedServerInfo { }
public sealed class GuildUpdate :
Extended
ServerInfo { }
public sealed class GuildUpdate : ServerInfo { }
public sealed class GuildDelete : ExtendedServerInfo { }
//Channels
+ 1
- 1
Discord.Net/DiscordWebSocket.cs
View File
@@ -71,7 +71,7 @@ namespace Discord
}
public async Task DisconnectAsync()
{
if (_
webSocke
t != null)
if (_t
asks
!= null)
{
_cancelToken.Cancel();
await _tasks;
Write
Preview
Loading…
Cancel
Save