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
If discord error code is 0, fall back to http code
tags/1.0-rc
RogueException
8 years ago
parent
fbd34d6719
commit
96a377a258
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Discord.Net.Core/Net/HttpException.cs
+ 1
- 1
src/Discord.Net.Core/Net/HttpException.cs
View File
@@ -20,7 +20,7 @@ namespace Discord.Net
private static string CreateMessage(HttpStatusCode httpCode, int? discordCode = null, string reason = null)
{
string msg;
if (discordCode != null)
if (discordCode != null
&& discordCode != 0
)
{
if (reason != null)
msg = $"The server responded with error {(int)discordCode}: {reason}";
Write
Preview
Loading…
Cancel
Save