From 78f2d9f58928de9e50e8904c0f128e8a4a90e88a Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Thu, 27 Jun 2019 07:27:20 +0000 Subject: [PATCH] Started using https instead of http --- glCapsViewerHttp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glCapsViewerHttp.cpp b/glCapsViewerHttp.cpp index 22c75d5..29f3fac 100644 --- a/glCapsViewerHttp.cpp +++ b/glCapsViewerHttp.cpp @@ -294,9 +294,9 @@ vector glCapsViewerHttp::fetchDeviceReports(string device) string glCapsViewerHttp::getBaseUrl() { #ifdef DEVDATABASE - return "http://www.delphigl.de/opengldatabase_dev/"; + return "https://www.delphigl.de/opengldatabase_dev/"; #else - return "http://opengl.gpuinfo.org/"; + return "https://opengl.gpuinfo.org/"; #endif }