This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
youys
/
shadowsocks-windows
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
67
Wiki
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
Browse Source
prevent null reference exception log
tags/2.5.3
icylogic
9 years ago
parent
b36b25af06
commit
295beaf8ee
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
shadowsocks-csharp/Controller/Strategy/SimplyChooseByStatisticsStrategy.cs
+ 4
- 0
shadowsocks-csharp/Controller/Strategy/SimplyChooseByStatisticsStrategy.cs
View File
@@ -93,6 +93,10 @@ namespace Shadowsocks.Controller.Strategy
private void ChooseNewServer(List<Server> servers)
{
if (statistics == null)
{
return;
}
try
{
var bestResult = (from server in servers
Write
Preview
Loading…
Cancel
Save