[Glitch] Fix quote-inline fallback being removed even for legacy quotes (#3402)

Port 2a9c7d2b9e to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Claire
2026-02-15 14:59:38 +01:00
committed by GitHub
parent 4149067b18
commit 114105a788

View File

@@ -178,7 +178,7 @@ class StatusContent extends PureComponent {
{children}
</HandledLink>
);
} else if (element.classList.contains('quote-inline')) {
} else if (element.classList.contains('quote-inline') && this.props.status.get('quote')) {
return null;
}
return undefined;