Skip to content

Commit

Permalink
Fix getStatus call when app has compiler errors
Browse files Browse the repository at this point in the history
  • Loading branch information
d-gubert committed Dec 18, 2024
1 parent 90f6207 commit 2054309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/apps-engine/src/server/AppManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export class AppManager {
const prl = new ProxiedApp(this, item, {
// Maybe we should have an "EmptyRuntime" class for this?
getStatus() {
return AppStatus.COMPILER_ERROR_DISABLED;
return Promise.resolve(AppStatus.COMPILER_ERROR_DISABLED);
},
} as unknown as DenoRuntimeSubprocessController);

Expand Down

0 comments on commit 2054309

Please sign in to comment.