diff --git a/Iceshrimp.Backend/Core/Helpers/LibMfm/Conversion/MfmConverter.cs b/Iceshrimp.Backend/Core/Helpers/LibMfm/Conversion/MfmConverter.cs
index ca19e875..9a2a1e0a 100644
--- a/Iceshrimp.Backend/Core/Helpers/LibMfm/Conversion/MfmConverter.cs
+++ b/Iceshrimp.Backend/Core/Helpers/LibMfm/Conversion/MfmConverter.cs
@@ -53,7 +53,7 @@ public class MfmConverter(
if (html == null) return new HtmlMfmData("", media);
// Ensure compatibility with AP servers that send both
as well as newlines
- var regex = new Regex(@"
\r?\n", RegexOptions.IgnoreCase);
+ var regex = new Regex(@"
(?:\r?\n)?", RegexOptions.IgnoreCase);
html = regex.Replace(html, "\n");
// Ensure compatibility with AP servers that send non-breaking space characters instead of regular spaces