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:
Howard Stearns 2019-08-29 15:20:30 -07:00 committed by GitHub
commit c4c29dd093
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;