FakeNitro: Fix crash

main
V 1 year ago
parent bea7a1711e
commit 8aea72c1be
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905

@ -565,7 +565,11 @@ export default definePlugin({
switch (embed.type) {
case "image": {
if (!settings.store.transformCompoundSentence && !contentItems.includes(embed.url!) && !contentItems.includes(embed.image!.proxyURL)) return false;
if (
!settings.store.transformCompoundSentence
&& !contentItems.includes(embed.url!)
&& !contentItems.includes(embed.image?.proxyURL!)
) return false;
if (settings.store.transformEmojis) {
if (fakeNitroEmojiRegex.test(embed.url!)) return true;

Loading…
Cancel
Save