Skip to content

Commit

Permalink
Merge pull request #207 from kookmin-sw/hotfix-fcm
Browse files Browse the repository at this point in the history
[fix] FCM message 객체 수정
  • Loading branch information
tmdtmdqorekf authored May 9, 2024
2 parents fa7490a + 08874b8 commit 92d791e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ private String makePushMessage(String targetToken, String title, String body) th
data.setBody(body);

Notification notification = new Notification();
data.setTitle(title);
data.setBody(body);
notification.setTitle(title);
notification.setBody(body);

Message message = new Message();
message.setData(data);
Expand Down

0 comments on commit 92d791e

Please sign in to comment.