summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-10-25 11:00:01 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-10-25 11:00:01 +1100
commitc84cdf0d2a1b43a0008c7c4ecfc8574c539872cd (patch)
treeb77ec695cb52296cf4a91a668dcbc519f1eca255
parentMove message auto mod to the api route instead of a @beforeinsert/update method (diff)
downloadserver-c84cdf0d2a1b43a0008c7c4ecfc8574c539872cd.tar.xz
Fix fix for twitter embeds from yesterday
-rw-r--r--src/api/util/utility/EmbedHandlers.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/util/utility/EmbedHandlers.ts b/src/api/util/utility/EmbedHandlers.ts

index 700f5b55..374d88fd 100644 --- a/src/api/util/utility/EmbedHandlers.ts +++ b/src/api/util/utility/EmbedHandlers.ts
@@ -225,7 +225,7 @@ export const EmbedHandlers: { [key: string]: (url: URL) => Promise<Embed | Embed // }, }; - if (media.length > 0) { + if (media && media.length > 0) { embed.image = { width: media[0].width, height: media[0].height,