mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-11-25 15:46:06 +09:00
Set Content-Type to object-storage
This commit is contained in:
parent
1510a52409
commit
42935360d6
@ -25,7 +25,7 @@ async function save(readable: stream.Readable, name: string, type: string, hash:
|
||||
const minio = new Minio.Client(config.drive.config);
|
||||
const id = uuid.v4();
|
||||
const obj = `${config.drive.prefix}/${id}`;
|
||||
await minio.putObject(config.drive.bucket, obj, readable);
|
||||
await minio.putObject(config.drive.bucket, obj, readable, size, { 'Content-Type': type });
|
||||
|
||||
Object.assign(metadata, {
|
||||
withoutChunks: true,
|
||||
|
Loading…
Reference in New Issue
Block a user