Fixed: Comparing HSTS timestamp value

--HG--
branch : develop
This commit is contained in:
Nimetu 2017-10-17 13:54:36 +03:00
parent 81adb6c787
commit b98bd57659

View file

@ -55,7 +55,7 @@ namespace NLGUI {
time_t currentTime;
time(&currentTime);
return (hsts.Expires < currentTime);
return (hsts.Expires > currentTime);
}
return false;