Don't launch statistics on debug builds

Builds, not in debug mode, I have enough of forbidden requests to my own API
This commit is contained in:
JustArchi
2017-01-11 15:55:28 +01:00
parent 283cfce728
commit cf23d77dfb

View File

@@ -214,7 +214,7 @@ namespace ArchiSteamFarm {
//SteamSaleEvent = new SteamSaleEvent(this);
Trading = new Trading(this);
if (Program.GlobalConfig.Statistics) {
if (!Debugging.IsDebugBuild && Program.GlobalConfig.Statistics) {
Statistics = new Statistics(this);
}