mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-01-31 08:46:16 +00:00
Fix #1478
This commit is contained in:
parent
60b44c2cdd
commit
0a5db0cecb
1 changed files with 1 additions and 1 deletions
|
@ -1228,7 +1228,7 @@ try {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only starts importing if the backup file contains at least one proxy
|
// Only starts importing if the backup file contains at least one proxy
|
||||||
if (proxyListData.length >= 1) {
|
if (proxyListData && proxyListData.length >= 1) {
|
||||||
const proxies = await R.findAll("proxy");
|
const proxies = await R.findAll("proxy");
|
||||||
|
|
||||||
// Loop over proxy list and save proxies
|
// Loop over proxy list and save proxies
|
||||||
|
|
Loading…
Add table
Reference in a new issue