Fixed missing slash in biometrics bucket path.

This commit is contained in:
DebaucheryLibrarian
2026-07-05 04:41:36 +02:00
parent b66ee3095d
commit a888acf0b7

View File

@@ -45,7 +45,7 @@ async function getImageBuffer(mediaEntry) {
return null;
}
const res = await fetch(`https://${config.s3.bucket}${mediaEntry.path}`);
const res = await fetch(`https://${config.s3.bucket}/${mediaEntry.path}`);
if (res.ok) {
return Buffer.from(await res.arrayBuffer());