1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

changed poll delay

This commit is contained in:
Fedor Katurov 2019-11-19 13:56:37 +07:00
parent b6756bb3e5
commit f25d627b4e

View file

@ -294,7 +294,7 @@ function* getUpdates() {
function* startPollingSaga() {
while (true) {
yield call(getUpdates);
yield delay(10000);
yield delay(60000);
}
}