1
0
Fork 0
mirror of synced 2024-06-23 08:30:31 +12:00

Updating system for hosting error that blocked creating apps when server not configured correctly.

This commit is contained in:
mike12345567 2021-03-25 12:53:43 +00:00
parent 1de09689b5
commit 3bef238d55

View file

@ -98,12 +98,14 @@ exports.getDeployedApps = async () => {
},
})
const json = await response.json()
for (let value of Object.values(json)) {
const apps = {}
for (let [key, value] of Object.entries(json)) {
if (value.url) {
value.url = value.url.toLowerCase()
apps[key] = value
}
}
return json
return apps
} catch (err) {
// error, cannot determine deployed apps, don't stop app creation - sort this later
return {}