S3 클론에 업로드 시 'Broken pipe' 오류 발생 (이름에 é, ï 등 특수문자가 포함된 PDF)

discourse/lib/file_store/s3_store.rb at main · discourse/discourse · GitHub 의 62번째 줄

options[:content_disposition] = "attachment; filename=\"#{filename}\""

content disposition은 다음과 같이 포맷팅되어야 할 수도 있습니다:

options[:content_disposition] = ActionDispatch::Http::ContentDisposition.format(
        disposition: "attachment", filename: upload.filename
      )

이는 다음 커밋과 유사합니다:

이 경우, 이 content_disposition도 마찬가지일 수 있습니다:

4개의 좋아요