You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/src/main/java/com/objectcomputing/checkins/services/feedback_request/FeedbackRequestServicesImpl.java
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -415,7 +415,7 @@ public boolean selfRevieweeIsCurrentUserReviewee(FeedbackRequest request, UUID c
415
415
// request in the same review period that is assigned to the current
416
416
// user and the requestee is the same as the self-review request. If
417
417
// so, this user is allowed to see the self-review request.
418
-
if (request.getRecipientId().equals(request.getRequesteeId())) {
418
+
if (request.getRecipientId() != null && request.getRecipientId().equals(request.getRequesteeId())) {
419
419
List<FeedbackRequest> other = feedbackReqRepository.findByValues(
Copy file name to clipboardExpand all lines: server/src/main/java/com/objectcomputing/checkins/services/feedback_template/template_question/TemplateQuestionServicesImpl.java
+13-12Lines changed: 13 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -116,12 +116,14 @@ public void delete(UUID id) {
Copy file name to clipboardExpand all lines: server/src/test/java/com/objectcomputing/checkins/services/feedback_request/FeedbackRequestControllerTest.java
0 commit comments