mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 04:33:11 +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) => {
|
||||
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