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

Turns out I reverted the code I needed rather than the one that will delete all messages, nice

This commit is contained in:
Madeline 2022-07-24 14:13:22 +10:00
parent 2ee8ff4ad2
commit b00e432c2d
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

View File

@ -180,8 +180,16 @@ export async function postHandleMessage(message: Message) {
}
};
const { endpointPublic, resizeWidthMax, resizeHeightMax } = Config.get().cdn;
const resizeWidth = Math.min(resizeWidthMax ?? 1, width ?? 100);
const resizeHeight = Math.min(resizeHeightMax ?? 1, height ?? 100);
if (author_name) embed.author = { name: author_name };
if (image) embed.thumbnail = { proxy_url: image, url: image, width: width, height: height };
if (image) embed.thumbnail = {
proxy_url: `${endpointPublic}/external/resize/${encodeURIComponent(image)}?width=${resizeWidth}&height=${resizeHeight}`,
url: image,
width: width,
height: height
};
if (title) embed.title = title;
if (url) embed.url = url;
if (description) embed.description = description;