Skip to content

Commit

Permalink
#56 [FIX] : 그룹 디테일 api 요일 하나일때 alarmDay반영
Browse files Browse the repository at this point in the history
  • Loading branch information
hye-on committed Oct 17, 2023
1 parent 4c81f73 commit 69d304a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ else if(Objects.deepEquals(everyDay,alarmDays))
formattedDays.append(",");
}
}
//요일이 한개이면
if (formattedDays.length()==2)
return formattedDays.toString().replace(",","요일");
formattedDays.deleteCharAt(formattedDays.length() - 1);
}

Expand Down

0 comments on commit 69d304a

Please sign in to comment.