Skip to content

Commit

Permalink
[Refactor] 학식 주말 텍스트 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hen715 committed Jul 19, 2024
1 parent 71681f5 commit c4adc33
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ public void storeStudentCafeteria(List<WebElement> wrapWeekDivs){
List<WebElement> foods = rows.get(i).findElements(By.tagName("td"));
if(i==3){
String menu = foods.get(0).getText();
if(menu.equals("")){
menu = "오늘은 쉽니다";
}
menu = menu.replace("\"","");
redisService.storeMeal("학생식당", day, i,menu);
}
Expand Down

0 comments on commit c4adc33

Please sign in to comment.