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

Port 2a9c7d2b9e51cdfbc636972c0f9ffdbe06c02d59 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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;