Fixed: Comparing HSTS timestamp value
--HG-- branch : develop
This commit is contained in:
parent
81adb6c787
commit
b98bd57659
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ namespace NLGUI {
|
|||
time_t currentTime;
|
||||
time(¤tTime);
|
||||
|
||||
return (hsts.Expires < currentTime);
|
||||
return (hsts.Expires > currentTime);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue