From b98bd576593570c97557d88b7124e661873a696f Mon Sep 17 00:00:00 2001 From: Nimetu Date: Tue, 17 Oct 2017 13:54:36 +0300 Subject: [PATCH] Fixed: Comparing HSTS timestamp value --HG-- branch : develop --- code/nel/src/gui/http_hsts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/nel/src/gui/http_hsts.cpp b/code/nel/src/gui/http_hsts.cpp index 980bdabda..c69062538 100644 --- a/code/nel/src/gui/http_hsts.cpp +++ b/code/nel/src/gui/http_hsts.cpp @@ -55,7 +55,7 @@ namespace NLGUI { time_t currentTime; time(¤tTime); - return (hsts.Expires < currentTime); + return (hsts.Expires > currentTime); } return false;