diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-25 23:55:19 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-25 23:55:19 +0200 |
commit | 286b4a69fd1a4a232afaea69aa29724cd7c53746 (patch) | |
tree | 3699f48e6874af5919af66e2878c5513be815a95 /cdn | |
parent | :bug: message attachment url (diff) | |
download | server-286b4a69fd1a4a232afaea69aa29724cd7c53746.tar.xz |
:sparkles: add private and public endpoint
Diffstat (limited to 'cdn')
-rw-r--r-- | cdn/src/routes/avatars.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cdn/src/routes/avatars.ts b/cdn/src/routes/avatars.ts index 3d745f90..93045925 100644 --- a/cdn/src/routes/avatars.ts +++ b/cdn/src/routes/avatars.ts @@ -44,7 +44,8 @@ router.post( if (ANIMATED_MIME_TYPES.includes(type.mime)) hash = `a_${hash}`; // animated icons have a_ infront of the hash const path = `avatars/${user_id}/${hash}`; - const endpoint = Config.get().cdn.endpoint || "http://localhost:3003"; + const endpoint = + Config.get().cdn.endpointPublic || "http://localhost:3003"; await storage.set(path, buffer); |