remove extra backslash that was breaking link regex

This commit is contained in:
Henry Hiles 2026-05-21 13:11:04 -04:00
commit 49d480d1e6
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -214,7 +214,7 @@ class EventRenderer extends ConsumerWidget {
textStyle: textStyle, textStyle: textStyle,
formattedBody!.replaceAllMapped( formattedBody!.replaceAllMapped(
RegExp( RegExp(
r"(<a\b[^>]*>.*?<\/a>)|(\\bhttps?:\/\/[^\s<]+)", r"(<a\b[^>]*>.*?<\/a>)|(\bhttps?:\/\/[^\s<]+)",
caseSensitive: false, caseSensitive: false,
dotAll: true, dotAll: true,
), ),