Browse Source

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

pull/1331/head
mike12345567 5 years ago
parent
commit
3bef238d55
  1. 6
      packages/server/src/utilities/builder/hosting.js

6
packages/server/src/utilities/builder/hosting.js

@ -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 {}

Loading…
Cancel
Save