Skip to content

Commit

Permalink
fix: Add null check for subject
Browse files Browse the repository at this point in the history
  • Loading branch information
Arun-KumarH committed Nov 4, 2024
1 parent 8490630 commit 069a44a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schedulingService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ export class SchedulingService implements SchedulingServiceServiceImplementation
value: urns.user,
attributes: [{
id: urns.ownerInstance,
value: subject.id,
value: subject?.id,
attributes: []
}]
});
Expand Down

0 comments on commit 069a44a

Please sign in to comment.