Browse Source

Disable StatisticsStrategy by default.

tags/3.2
kimw 8 years ago
parent
commit
5b1cf36a67
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      shadowsocks-csharp/Model/StatisticsStrategyConfiguration.cs

+ 1
- 1
shadowsocks-csharp/Model/StatisticsStrategyConfiguration.cs View File

@@ -14,7 +14,7 @@ namespace Shadowsocks.Model
public class StatisticsStrategyConfiguration
{
public static readonly string ID = "com.shadowsocks.strategy.statistics";
public bool StatisticsEnabled { get; set; } = true;
public bool StatisticsEnabled { get; set; } = false;
public bool ByHourOfDay { get; set; } = true;
public bool Ping { get; set; }
public int ChoiceKeptMinutes { get; set; } = 10;


Loading…
Cancel
Save