Skip to content

Commit

Permalink
๐Ÿ› :: ๋ฒ„๊ทธ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Sep 6, 2023
1 parent 7ed6c68 commit 7868ebf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ public void sendPushMessage(String title, RiceType riceType){
String body = "";
for (int i = 0; i < items.size(); i++) {
String element = items.get(i);
body += element;
if(i != items.size()){
body +=", ";
}
body += element;
}
System.out.println(body);
flareLaneUtil.sendMessage(title, body);
Expand Down

0 comments on commit 7868ebf

Please sign in to comment.