Use https URLs to access renderdoc.org

* Previous versions accessing the http URLs will be redirected soon (as
  of time of writing this). The POST /bugsubmit won't be redirected as
  it's not feasible to redirect POST requests, but that will continue
  working.
This commit is contained in:
baldurk
2016-06-17 14:12:19 +02:00
parent dc1c7323e6
commit 10629ab92b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -685,7 +685,7 @@ int WINAPI wWinMain(_In_ HINSTANCE hInst, _In_opt_ HINSTANCE hPrevInstance, _In_
std::map<wstring, wstring> params;
google_breakpad::HTTPUpload::SendRequest(L"http://renderdoc.org/bugsubmit", params,
google_breakpad::HTTPUpload::SendRequest(L"https://renderdoc.org/bugsubmit", params,
dumpFolder + L"\\report.zip", L"report", &timeout,
&body, &code);
+1 -1
View File
@@ -1112,7 +1112,7 @@ namespace renderdocui.Windows
var updateThread = Helpers.NewThread(new ThreadStart(() =>
{
// spawn thread to check update
WebRequest g = HttpWebRequest.Create(String.Format("http://renderdoc.org/getupdateurl/{0}/{1}", IntPtr.Size == 4 ? "32" : "64", versionCheck));
WebRequest g = HttpWebRequest.Create(String.Format("https://renderdoc.org/getupdateurl/{0}/{1}", IntPtr.Size == 4 ? "32" : "64", versionCheck));
UpdateResult result = UpdateResult.Disabled;