From d3682b94b2256834fc73f991e35f9caa4d6a480f Mon Sep 17 00:00:00 2001 From: spiral Date: Fri, 7 Jan 2022 14:21:52 -0500 Subject: [PATCH] feat: add attachment icon to reply card if referenced message has embeds --- PluralKit.Bot/Proxy/ProxyService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Proxy/ProxyService.cs b/PluralKit.Bot/Proxy/ProxyService.cs index f9203da2..89924cdc 100644 --- a/PluralKit.Bot/Proxy/ProxyService.cs +++ b/PluralKit.Bot/Proxy/ProxyService.cs @@ -227,7 +227,7 @@ public class ProxyService content.Append($"**[Reply to:]({jumpLink})** "); content.Append(msg); - if (repliedTo.Attachments.Length > 0) + if (repliedTo.Attachments.Length > 0 || repliedTo.Embeds.Length > 0) content.Append($" {Emojis.Paperclip}"); } else