Added leeway to the device code token polling process.
This commit is contained in:
parent
4e66852db1
commit
d8dbfaa7ab
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
20250513
|
20250518
|
||||||
|
|
|
@ -49,7 +49,7 @@ class OAuth2DeviceInfo {
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool $speedy {
|
public bool $speedy {
|
||||||
get => ($this->polledTime + $this->interval) > time();
|
get => ($this->polledTime + $this->interval - 1) > time();
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @var string[] */
|
/** @var string[] */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue