Fix URL regex in export service

pull/4/head
Alexey Golub 7 years ago
parent d17fef6721
commit 460a319a45

@ -87,7 +87,7 @@ namespace DiscordChatExporter.Services
content = HtmlDocument.HtmlEncode(content); content = HtmlDocument.HtmlEncode(content);
// Links from URLs // Links from URLs
content = Regex.Replace(content, "((^|\\s)(https?|ftp)://[^\\s/$.?#].[^\\s]*($|\\s))", content = Regex.Replace(content, "((https?|ftp)://[^\\s/$.?#].[^\\s]*)",
"<a href=\"$1\">$1</a>"); "<a href=\"$1\">$1</a>");
// Preformatted multiline // Preformatted multiline

Loading…
Cancel
Save