Added leeway to the device code token polling process.

This commit is contained in:
flash 2025-05-18 15:39:01 +00:00
parent 4e66852db1
commit d8dbfaa7ab
Signed by: flash
GPG key ID: 2C9C2C574D47FE3E
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
20250513
20250518

View file

@ -49,7 +49,7 @@ class OAuth2DeviceInfo {
}
public bool $speedy {
get => ($this->polledTime + $this->interval) > time();
get => ($this->polledTime + $this->interval - 1) > time();
}
/** @var string[] */