Skip to content

Commit

Permalink
#21 fix : pdf 대체 작업시 메타데이터 디코딩 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jinno321 committed Oct 13, 2024
1 parent 40a3641 commit 5a3af9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public String replacePdfPage(Wallet wallet, int pageNumberToRemove, MultipartFil

// PDF 합치기
byte[] finalPdfBytes = mergeThreePdfs(frontPart, newPdfBytes, backPart);
HashMap<String, String> metadata = getPdfMetadata(fileName);
HashMap<String, String> metadata = decodeMetadata(getPdfMetadata(fileName));

// 최종 PDF를 S3에 업로드
uploadToS3(fileName, metadata, finalPdfBytes);
Expand Down

0 comments on commit 5a3af9e

Please sign in to comment.