mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 01:02:35 +02:00
Merge pull request #16116 from SimonWalton-HiFi/efficient-remaining-token-time
BUGZ-1274: Use UTC with QDateTime rather than local time in AccountManager
This commit is contained in:
commit
c4c29dd093
1 changed files with 2 additions and 1 deletions
|
@ -498,7 +498,8 @@ bool AccountManager::checkAndSignalForAccessToken() {
|
|||
|
||||
bool AccountManager::needsToRefreshToken() {
|
||||
if (!_accountInfo.getAccessToken().token.isEmpty() && _accountInfo.getAccessToken().expiryTimestamp > 0) {
|
||||
qlonglong expireThreshold = QDateTime::currentDateTime().addSecs(1 * 60 * 60).toMSecsSinceEpoch();
|
||||
static constexpr int MIN_REMAINING_MS = 1 * SECS_PER_HOUR * MSECS_PER_SECOND; // 1 h
|
||||
auto expireThreshold = QDateTime::currentDateTimeUtc().addMSecs(MIN_REMAINING_MS).toMSecsSinceEpoch();
|
||||
return _accountInfo.getAccessToken().expiryTimestamp < expireThreshold;
|
||||
} else {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue