Browse Source

Fixing issue discovered by test case.

pull/3418/head
Michael Drury 5 years ago
parent
commit
0b6eb6b71d
  1. 2
      packages/server/src/api/controllers/application.js

2
packages/server/src/api/controllers/application.js

@ -320,7 +320,7 @@ exports.delete = async ctx => {
if (!env.isTest() && !ctx.query.unpublish) {
await deleteApp(ctx.params.appId)
}
if (ctx.query.unpublish) {
if (ctx.query && ctx.query.unpublish) {
await cleanupAutomations(ctx.params.appId)
}
// make sure the app/role doesn't stick around after the app has been deleted

Loading…
Cancel
Save