Re-enable UDP protocol by default

This commit is contained in:
JustArchi
2017-12-03 12:28:05 +01:00
parent 258caa2188
commit 0f4864fef2
2 changed files with 2 additions and 2 deletions

View File

@@ -120,7 +120,7 @@ namespace ArchiSteamFarm {
internal ulong SteamOwnerID { get; private set; }
[JsonProperty(Required = Required.DisallowNull)]
internal ProtocolTypes SteamProtocols { get; private set; } = ProtocolTypes.Tcp;
internal ProtocolTypes SteamProtocols { get; private set; } = ProtocolTypes.Tcp | ProtocolTypes.Udp;
// This constructor is used only by deserializer
private GlobalConfig() { }