Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/polite-students-lick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@rocket.chat/apps-engine': patch
'@rocket.chat/meteor': patch
---

Fixes an error on apps loading that would cause an unhandled promise rejection crash during startup in some cases
4 changes: 4 additions & 0 deletions packages/apps-engine/src/server/AppManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,10 @@ export class AppManager {
getStatus() {
return Promise.resolve(AppStatus.COMPILER_ERROR_DISABLED);
},

on(): void {
return undefined;
},
} as unknown as DenoRuntimeSubprocessController);

this.apps.set(item.id, prl);
Expand Down
Loading