Use TCP by default

We'll play it safe, websocket/udp is not fully tested yet.
This commit is contained in:
JustArchi 2017-08-14 17:58:30 +02:00
parent 5e4f6a7926
commit 8b8671c679
2 changed files with 2 additions and 2 deletions

View file

@ -105,7 +105,7 @@ namespace ArchiSteamFarm {
internal readonly bool Statistics = true;
[JsonProperty(Required = Required.DisallowNull)]
internal readonly ProtocolTypes SteamProtocols = ProtocolTypes.All;
internal readonly ProtocolTypes SteamProtocols = ProtocolTypes.Tcp;
[JsonProperty(Required = Required.DisallowNull)]
internal readonly EUpdateChannel UpdateChannel = EUpdateChannel.Stable;

View file

@ -19,6 +19,6 @@
"OptimizationMode": 0,
"Statistics": true,
"SteamOwnerID": 0,
"SteamProtocols": 7,
"SteamProtocols": 1,
"UpdateChannel": 1
}