diff --git a/ArchiSteamFarm/ArchiWebHandler.cs b/ArchiSteamFarm/ArchiWebHandler.cs index 172901ab3..27f764fa5 100644 --- a/ArchiSteamFarm/ArchiWebHandler.cs +++ b/ArchiSteamFarm/ArchiWebHandler.cs @@ -47,12 +47,10 @@ namespace ArchiSteamFarm { // We must use HTTPS for SteamCommunity, as http would make certain POST requests failing (trades) private const string SteamCommunityHost = "steamcommunity.com"; - private const string SteamCommunityURL = "https://" + SteamCommunityHost; // We could (and should) use HTTPS for SteamStore, but that would make certain POST requests failing private const string SteamStoreHost = "store.steampowered.com"; - private const string SteamStoreURL = "http://" + SteamStoreHost; private static readonly SemaphoreSlim InventorySemaphore = new SemaphoreSlim(1, 1);