Skip to content

Commit

Permalink
unhandled case when feedback group is null
Browse files Browse the repository at this point in the history
  • Loading branch information
adnanalicic committed Jan 11, 2023
1 parent 656c9d0 commit 71a4cdc
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ void removeConsultantsFromSessionGroup(String rcGroupId, List<Consultant> consul

private void removeConsultantsFromRocketChatGroup(
String rcGroupId, List<Consultant> consultants) {
if (rcGroupId == null) {
return;
}
List<String> groupMemberList = obtainRocketChatGroupMemberIds(rcGroupId);

rocketChatFacade.addTechnicalUserToGroup(rcGroupId);
Expand Down

0 comments on commit 71a4cdc

Please sign in to comment.