Fixing issue discovered by test case.

This commit is contained in:
Michael Drury 2021-11-17 21:33:35 +00:00
parent b886bbfc47
commit 0623dc2981
1 changed files with 1 additions and 1 deletions

View File

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