From f1b1e6afc417f00f83cec1d6d2b3eac87221d326 Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 12 Jul 2023 04:07:27 +0300 Subject: [PATCH] fix --- files/helpers/regex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/regex.py b/files/helpers/regex.py index e8024b198..4abca0406 100644 --- a/files/helpers/regex.py +++ b/files/helpers/regex.py @@ -132,7 +132,7 @@ twitch_regex = re.compile('(https:\/\/)?(www\.)?twitch.tv/(.*)',flags=re.I|re.A) link_fix_regex = re.compile("(\[.*?\]\()(?!http|\/)(.*?\))" + NOT_IN_CODE_OR_LINKS, flags=re.A) -css_url_regex = re.compile('url\(\s*[\'"]?(.*?)[\'"]?\s*\)', flags=re.I|re.A) +css_url_regex = re.compile('url\(\s*[\'"]?(.*?)[\'"]?', flags=re.I|re.A) linefeeds_regex = re.compile("([^\n])\n([^\n])", flags=re.A)