mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
Move Steam store to https
Hopefully it's ready this time, thanks Valve!
This commit is contained in:
@@ -42,14 +42,10 @@ namespace ArchiSteamFarm {
|
|||||||
private const string IPlayerService = "IPlayerService";
|
private const string IPlayerService = "IPlayerService";
|
||||||
private const string ISteamUserAuth = "ISteamUserAuth";
|
private const string ISteamUserAuth = "ISteamUserAuth";
|
||||||
private const string ITwoFactorService = "ITwoFactorService";
|
private const string ITwoFactorService = "ITwoFactorService";
|
||||||
|
|
||||||
// We must use HTTPS for SteamCommunity, as http would make certain POST requests failing (trades)
|
|
||||||
private const string SteamCommunityHost = "steamcommunity.com";
|
private const string SteamCommunityHost = "steamcommunity.com";
|
||||||
private const string SteamCommunityURL = "https://" + SteamCommunityHost;
|
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 SteamStoreHost = "store.steampowered.com";
|
||||||
private const string SteamStoreURL = "http://" + SteamStoreHost;
|
private const string SteamStoreURL = "https://" + SteamStoreHost;
|
||||||
|
|
||||||
private static readonly SemaphoreSlim InventorySemaphore = new SemaphoreSlim(1, 1);
|
private static readonly SemaphoreSlim InventorySemaphore = new SemaphoreSlim(1, 1);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user