1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-19 17:21:35 +02:00

Use localhost:3001 as fallback when cdn endpoints are null rather than 3003

This commit is contained in:
Madeline 2023-01-26 10:18:16 +11:00
parent b82c6d672b
commit 08560d8655
No known key found for this signature in database
GPG Key ID: 80D25DA3BCB24281
5 changed files with 6 additions and 6 deletions

View File

@ -50,7 +50,7 @@ router.post(
const path = `attachments/${channel_id}/${id}/${filename}`;
const endpoint =
Config.get()?.cdn.endpointPublic || "http://localhost:3003";
Config.get()?.cdn.endpointPublic || "http://localhost:3001";
await storage.set(path, buffer);
let width;

View File

@ -63,7 +63,7 @@ router.post(
const path = `avatars/${user_id}/${hash}`;
const endpoint =
Config.get().cdn.endpointPublic || "http://localhost:3003";
Config.get().cdn.endpointPublic || "http://localhost:3001";
await storage.set(path, buffer);

View File

@ -59,7 +59,7 @@ router.post("/", multer.single("file"), async (req: Request, res: Response) => {
if (ANIMATED_MIME_TYPES.includes(type.mime)) hash = `a_${hash}`; // animated icons have a_ infront of the hash
const path = `guilds/${guild_id}/users/${user_id}/avatars/${hash}`;
const endpoint = Config.get().cdn.endpointPublic || "http://localhost:3003";
const endpoint = Config.get().cdn.endpointPublic || "http://localhost:3001";
await storage.set(path, buffer);

View File

@ -62,7 +62,7 @@ router.post(
const path = `role-icons/${role_id}/${hash}.png`;
const endpoint =
Config.get().cdn.endpointPublic || "http://localhost:3003";
Config.get().cdn.endpointPublic || "http://localhost:3001";
await storage.set(path, buffer);

View File

@ -36,7 +36,7 @@ export async function uploadFile(
});
const response = await fetch(
`${Config.get().cdn.endpointPrivate || "http://localhost:3003"}${path}`,
`${Config.get().cdn.endpointPrivate || "http://localhost:3001"}${path}`,
{
headers: {
signature: Config.get().security.requestSignature,
@ -75,7 +75,7 @@ export async function handleFile(
export async function deleteFile(path: string) {
const response = await fetch(
`${Config.get().cdn.endpointPrivate || "http://localhost:3003"}${path}`,
`${Config.get().cdn.endpointPrivate || "http://localhost:3001"}${path}`,
{
headers: {
signature: Config.get().security.requestSignature,