Skip to content

Commit 069a44a

Browse files
committed
fix: Add null check for subject
1 parent 8490630 commit 069a44a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/schedulingService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1474,7 +1474,7 @@ export class SchedulingService implements SchedulingServiceServiceImplementation
14741474
value: urns.user,
14751475
attributes: [{
14761476
id: urns.ownerInstance,
1477-
value: subject.id,
1477+
value: subject?.id,
14781478
attributes: []
14791479
}]
14801480
});

0 commit comments

Comments
 (0)