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 {
PutObjectRequest putObjectRequest = PutObjectRequest.builder()
.bucket(bucket)
.contentType(file.getContentType())
.key(key)
.build();
RequestBody requestBody = RequestBody.fromInputStream(file.getInputStream(), file.getSize());

Loading…
Cancel
Save