Skip to content

Commit

Permalink
Updated emoji.
Browse files Browse the repository at this point in the history
  • Loading branch information
random1223 committed Aug 30, 2024
1 parent f6dfae2 commit d5419ad
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,10 @@ public static String getGithubPriorityEmoji(Integer priority) {
String priorityEmojo = " :white_circle: ";
if (priority == null) {
;
} else if (priority >= 3) {
} else if (priority >= 4) {
priorityEmojo = " :red_circle: ";
} else if (priority >= 3) {
priorityEmojo = " :yellow_circle: ";
} else if (priority >= 2) {
priorityEmojo = " :white_circle: ";
}
Expand Down

0 comments on commit d5419ad

Please sign in to comment.