diff --git a/project/src/routers/EventOutputHolder.ts b/project/src/routers/EventOutputHolder.ts index 3903a037..17676f21 100644 --- a/project/src/routers/EventOutputHolder.ts +++ b/project/src/routers/EventOutputHolder.ts @@ -184,7 +184,8 @@ export class EventOutputHolder } } - return productions; + // Return null of there's no crafts to send to client to match live behaviour + return (Object.keys(productions).length > 0) ? productions : null } /**