From 114105a78825d3e8ebef7824e842d99ef291fd16 Mon Sep 17 00:00:00 2001 From: Claire Date: Sun, 15 Feb 2026 14:59:38 +0100 Subject: [PATCH] [Glitch] Fix `quote-inline` fallback being removed even for legacy quotes (#3402) Port 2a9c7d2b9e51cdfbc636972c0f9ffdbe06c02d59 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/components/status_content.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/components/status_content.jsx b/app/javascript/flavours/glitch/components/status_content.jsx index 6e6968f868..dd2d9c3f6b 100644 --- a/app/javascript/flavours/glitch/components/status_content.jsx +++ b/app/javascript/flavours/glitch/components/status_content.jsx @@ -178,7 +178,7 @@ class StatusContent extends PureComponent { {children} ); - } else if (element.classList.contains('quote-inline')) { + } else if (element.classList.contains('quote-inline') && this.props.status.get('quote')) { return null; } return undefined;