You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current latest version 3.0.0 the config value for idle seems to be ignored. Instead of the configured value, the idle value is always 3600 seconds minus the timeout value.
In the current latest version 3.0.0 the config value for
idle
seems to be ignored. Instead of the configured value, theidle
value is always 3600 seconds minus thetimeout
value.For example, given the following:
results in
idle
being set to3600 - 333 = 3267
when being queried bythis.userIdle.getConfigValue();
:Another example: given
results in:
Again, the
idle
value is3600
minus thetimeout
value:3378
.So the configured
idle
value given inUserIdleModule.forRoot(..)
is ignored.The text was updated successfully, but these errors were encountered: