1
0
Fork 0
mirror of synced 2024-07-07 23:35:49 +12:00

fix response status from lock release call

This commit is contained in:
Martin McKeaveney 2021-05-13 14:29:27 +01:00
parent b5d23b19ff
commit 8d37a9bc8b

View file

@ -91,6 +91,7 @@
if (!appToDelete) {
return
}
await del(`/api/applications/${appToDelete?._id}`)
await apps.load()
appToDelete = null
@ -100,7 +101,7 @@
try {
const response = await del(`/api/dev/${appId}/lock`)
const json = await response.json()
if (json.status !== 200) throw json.message
if (response.status !== 200) throw json.message
notifications.success("Lock released")
await apps.load(appStatus)