zek 14.2.67 → 14.2.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2020/zek.mjs
CHANGED
|
@@ -1148,7 +1148,9 @@ class AuthService {
|
|
|
1148
1148
|
if (timeout < minRefreshTime) {
|
|
1149
1149
|
timeout = minRefreshTime;
|
|
1150
1150
|
}
|
|
1151
|
-
this._timerId = setInterval(
|
|
1151
|
+
this._timerId = setInterval(() => {
|
|
1152
|
+
this._emitRefreshToken();
|
|
1153
|
+
}, timeout);
|
|
1152
1154
|
}
|
|
1153
1155
|
}
|
|
1154
1156
|
_stopRefreshTokenTimer() {
|