From 92227cdf1872c516ccdc5aa2de348f8fec410e00 Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Wed, 21 Dec 2022 15:37:16 +1100 Subject: [PATCH] Set default cdn endpoints so that local testing works --- src/api/routes/channels/#channel_id/messages/index.ts | 2 +- src/util/config/types/CdnConfiguration.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/api/routes/channels/#channel_id/messages/index.ts b/src/api/routes/channels/#channel_id/messages/index.ts index 86864edb..523b0cf8 100644 --- a/src/api/routes/channels/#channel_id/messages/index.ts +++ b/src/api/routes/channels/#channel_id/messages/index.ts @@ -247,7 +247,7 @@ router.post( Attachment.create({ ...file, proxy_url: file.url }), ); } catch (error) { - return res.status(400).json(error); + return res.status(400).json({ message: error!.toString() }) } } diff --git a/src/util/config/types/CdnConfiguration.ts b/src/util/config/types/CdnConfiguration.ts index f58c1c64..3c4dd163 100644 --- a/src/util/config/types/CdnConfiguration.ts +++ b/src/util/config/types/CdnConfiguration.ts @@ -4,4 +4,7 @@ export class CdnConfiguration extends EndpointConfiguration { resizeHeightMax: number = 1000; resizeWidthMax: number = 1000; imagorServerUrl: string | null = null; + + endpointPublic: string | null = "http://localhost:3001"; + endpointPrivate: string | null = "http://localhost:3001"; } \ No newline at end of file