Fixed: Comparing HSTS timestamp value

--HG--
branch : develop
hg/compatibility-develop
Nimetu 7 years ago
parent 81adb6c787
commit b98bd57659

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

Loading…
Cancel
Save