mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-21 21:12:53 +09:00
Fix #4179
This commit is contained in:
parent
708b990954
commit
32d0b41ac6
@ -72,15 +72,15 @@ export default function load() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (config.drive.storage === 'minio') {
|
if (config.drive.storage === 'minio') {
|
||||||
if (typeof config.drive.storage.bucket !== 'string') {
|
if (typeof config.drive.bucket !== 'string') {
|
||||||
throw 'You need to configure the minio bucket.';
|
throw 'You need to configure the minio bucket.';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof config.drive.storage.prefix !== 'string') {
|
if (typeof config.drive.prefix !== 'string') {
|
||||||
throw 'You need to configure the minio prefix.';
|
throw 'You need to configure the minio prefix.';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config.drive.storage.prefix.config == null) {
|
if (config.drive.prefix.config == null) {
|
||||||
throw 'You need to configure the minio.';
|
throw 'You need to configure the minio.';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user