1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/util/cdn.ts b/src/util/util/cdn.ts
index 7f447c53..69d50159 100644
--- a/src/util/util/cdn.ts
+++ b/src/util/util/cdn.ts
@@ -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,
|