fix(avatars): use auto region instead of s3

This commit is contained in:
alyssa 2025-07-26 05:30:23 +00:00
parent 47c5990218
commit 049f06d9b1
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ async fn main() -> anyhow::Result<()> {
let bucket = {
let region = s3::Region::Custom {
region: "s3".to_string(),
region: "auto".to_string(),
endpoint: config.s3.endpoint.to_string(),
};

View file

@ -179,7 +179,7 @@ async fn main() -> anyhow::Result<()> {
let bucket = {
let region = s3::Region::Custom {
region: "s3".to_string(),
region: "auto".to_string(),
endpoint: config.s3.endpoint.to_string(),
};