fix cms upload journal image with content-type

main
wangqing 8 months ago
parent 445c5ec173
commit 6e35920d2e

@ -151,6 +151,7 @@ public class S3Service {
try { try {
PutObjectRequest putObjectRequest = PutObjectRequest.builder() PutObjectRequest putObjectRequest = PutObjectRequest.builder()
.bucket(bucket) .bucket(bucket)
.contentType(file.getContentType())
.key(key) .key(key)
.build(); .build();
RequestBody requestBody = RequestBody.fromInputStream(file.getInputStream(), file.getSize()); RequestBody requestBody = RequestBody.fromInputStream(file.getInputStream(), file.getSize());

Loading…
Cancel
Save