Skip to content
This repository has been archived by the owner on Oct 28, 2019. It is now read-only.

Fix: the GFW-leaded mistake #285

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/IdleMaster/CookieClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected override WebResponse GetWebResponse(WebRequest request, System.IAsyncR
public static CookieContainer GenerateCookies()
{
var cookies = new CookieContainer();
var target = new Uri("http://steamcommunity.com");
var target = new Uri("https://steamcommunity.com");
cookies.Add(new Cookie("sessionid", Settings.Default.sessionid) { Domain = target.Host });
cookies.Add(new Cookie("steamLogin", Settings.Default.steamLogin) { Domain = target.Host });
cookies.Add(new Cookie("steamparental", Settings.Default.steamparental) { Domain = target.Host });
Expand Down
2 changes: 1 addition & 1 deletion Source/IdleMaster/SteamProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ internal static string GetSteamId()

internal static string GetSteamUrl()
{
return "http://steamcommunity.com/profiles/" + GetSteamId();
return "https://steamcommunity.com/profiles/" + GetSteamId();
}

internal static string GetSignedAs()
Expand Down
Loading