From 069a44a05e6e71c6c23f3b2f0db76abfa3be9a24 Mon Sep 17 00:00:00 2001 From: akumar Date: Mon, 4 Nov 2024 13:11:14 +0100 Subject: [PATCH] fix: Add null check for subject --- src/schedulingService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schedulingService.ts b/src/schedulingService.ts index faa9f4d..cd6f118 100644 --- a/src/schedulingService.ts +++ b/src/schedulingService.ts @@ -1474,7 +1474,7 @@ export class SchedulingService implements SchedulingServiceServiceImplementation value: urns.user, attributes: [{ id: urns.ownerInstance, - value: subject.id, + value: subject?.id, attributes: [] }] });