Skip to content

Commit

Permalink
[MS-191] Feat: FCM 메시지 유저 프로필 이미지 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdgns8439 committed Jul 29, 2024
1 parent 566bc01 commit 4cbfba7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/modutaxi/api/common/fcm/FcmService.java
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ private void sendMessageExcludeMe(ChatMessageRequestDto chatMessageRequestDto) {
.setTitle(chatMessageRequestDto.getSender() + "님")
.setBody(chatMessageRequestDto.getType().equals(MessageType.IMAGE)
? "사진" : chatMessageRequestDto.getContent())
.setImage(chatMessageRequestDto.getImageUrl())
.build())
// APNS 설정 추가
.setApnsConfig(ApnsConfig.builder()
Expand Down

0 comments on commit 4cbfba7

Please sign in to comment.