From 3feb709522b38f1aa5ddedc5e1aee28597375aab Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Sun, 5 May 2024 19:17:39 -0700 Subject: Write better URL regular expressions for our needs. --- Hotline/macOS/MessageView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Hotline/macOS/MessageView.swift') diff --git a/Hotline/macOS/MessageView.swift b/Hotline/macOS/MessageView.swift index 94d3d2e..61e640e 100644 --- a/Hotline/macOS/MessageView.swift +++ b/Hotline/macOS/MessageView.swift @@ -26,7 +26,7 @@ struct MessageView: View { Spacer() } - Text(LocalizedStringKey(msg.text.convertLinksToMarkdown())) + Text(LocalizedStringKey(msg.text)) .lineSpacing(4) .multilineTextAlignment(.leading) .textSelection(.enabled) -- cgit