diff --git a/ArchiSteamFarm/GlobalConfig.cs b/ArchiSteamFarm/GlobalConfig.cs index c712d5452..fdf60ffe4 100644 --- a/ArchiSteamFarm/GlobalConfig.cs +++ b/ArchiSteamFarm/GlobalConfig.cs @@ -175,7 +175,7 @@ namespace ArchiSteamFarm { } if (globalConfig.SteamProtocols.HasFlag(ProtocolTypes.WebSocket) && !OS.SupportsWebSockets()) { - globalConfig.SteamProtocols &= ProtocolTypes.WebSocket; + globalConfig.SteamProtocols &= ~ProtocolTypes.WebSocket; if (globalConfig.SteamProtocols == 0) { globalConfig.SteamProtocols = ProtocolTypes.Tcp; }