Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/346aa9b97d296373d37cfc626fac04a681e46027 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix: set S3 region to `auto` if unset

pull/243/head
Josh Moore 2 years ago
parent 8487089209
commit 346aa9b97d

@ -39,7 +39,7 @@ const s3 = (): S3Client | null => {
};
// Attach region to config if required
s3config.region = region != null ? region : '';
s3config.region = region != null ? region : 'auto';
// Build the new client
_s3client = new S3Client(s3config);

Loading…
Cancel
Save