Skip to content

Conversation

@djlim2425
Copy link
Contributor

@djlim2425 djlim2425 commented Aug 21, 2025

#️⃣연관된 이슈

close #330
웹페이지에서 파일 조회시 문제가 없지만
로컬 다운로드 파일에서 조회시 확장자가 없어 파일이 깨지는 오류 수정위해 파일제목에 확장자 추가

업로드시

// 이전
amazonS3Manager.uploadFileWithTitle(wordKeyToUse, wordBytes, contentType, fileTitle);
amazonS3Manager.uploadFileWithTitle(wordKeyToUse, wordBytes, contentType, fileTitle);

//이후
amazonS3Manager.uploadFileWithTitle(pdfKeyToUse, pdfBytes, "application/pdf", fileTitle + ".pdf");
amazonS3Manager.uploadFileWithTitle(wordKeyToUse, wordBytes, contentType, fileTitle + ".docx");

제목 수정시

//이전
markdownFileUploader.updateFileTitle(meeting.getProceedingPdfKeyName(), request.getTitle());
markdownFileUploader.updateFileTitle(meeting.getProceedingWordKeyName(), request.getTitle());

//이후
markdownFileUploader.updateFileTitle(meeting.getProceedingPdfKeyName(), request.getTitle() + ".pdf");
markdownFileUploader.updateFileTitle(meeting.getProceedingWordKeyName(), request.getTitle() + ".docx");

@djlim2425 djlim2425 requested review from 2ghrms, Jinho622 and hknhj August 21, 2025 13:38
@djlim2425 djlim2425 self-assigned this Aug 21, 2025
@djlim2425 djlim2425 added the ✨ Feature 기능 개발 label Aug 21, 2025
@djlim2425 djlim2425 linked an issue Aug 21, 2025 that may be closed by this pull request
Copy link
Member

@2ghrms 2ghrms left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

굿입니닷

@djlim2425 djlim2425 merged commit 22c608a into dev Aug 21, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

✨ Feature 기능 개발

Projects

None yet

Development

Successfully merging this pull request may close these issues.

feat: AI meeting proceeding 파일 제목에 확장자 추가

4 participants