fix: Remove wrong rendered linebreak in html

This commit is contained in:
Krille 2023-05-31 10:19:13 +02:00
parent 44d7f61788
commit 715dca561f
No known key found for this signature in database

View File

@ -49,7 +49,8 @@ class HtmlMessage extends StatelessWidget {
final linkifiedRenderHtml = linkify( final linkifiedRenderHtml = linkify(
renderHtml, renderHtml,
options: const LinkifyOptions(humanize: false), options: const LinkifyOptions(humanize: false),
).map( )
.map(
(element) { (element) {
if (element is! UrlElement || if (element is! UrlElement ||
element.text.contains('<') || element.text.contains('<') ||
@ -59,7 +60,9 @@ class HtmlMessage extends StatelessWidget {
} }
return '<a href="${element.url}">${element.text}</a>'; return '<a href="${element.url}">${element.text}</a>';
}, },
).join(''); )
.join('')
.replaceAll('\n', '');
final linkColor = textColor.withAlpha(150); final linkColor = textColor.withAlpha(150);