Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dechoma committed Jan 23, 2025
1 parent 213ec83 commit 897640b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,8 @@ public static Set<String> buildReceiversListFromActions(
.toList();
receiverList.addAll(getEmailOrWebhookEndpointForTeams(teams, type));
} else {
receiverList = action.getReceivers() == null ? receiverList : new HashSet<>(action.getReceivers());
receiverList =
action.getReceivers() == null ? receiverList : new HashSet<>(action.getReceivers());
}

// Send to Admins
Expand Down

0 comments on commit 897640b

Please sign in to comment.