mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 12:43:12 +03:00
Фикс, если не находит таймаут конфига ошибки
This commit is contained in:
parent
e6d72aff2b
commit
54fcfc42bd
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ async function save_fiat() {
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
logger.error(err);
|
logger.error(err);
|
||||||
setTimeout(save_fiat, err.config.timeout ? err.config.timeout : 3000);
|
setTimeout(save_fiat, err.config?.timeout ? err.config?.timeout : 3000);
|
||||||
});
|
});
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue