From 64eb11fbafc028db9e32b76b47a31e74b257d2fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20Mazi=C3=A8re?= Date: Sun, 7 Jun 2020 22:17:55 +0200 Subject: [PATCH] Add aesgcm to urls grabber MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pierre Mazière --- src/ui/window_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/window_list.c b/src/ui/window_list.c index 01b5177f..3972fadb 100644 --- a/src/ui/window_list.c +++ b/src/ui/window_list.c @@ -1156,7 +1156,7 @@ wins_add_urls_ac(const ProfWin *const win, const ProfMessage *const message) GRegex *regex; GMatchInfo *match_info; - regex = g_regex_new("https?://\\S+", 0, 0, NULL); + regex = g_regex_new("(https?|aesgcm)://\\S+", 0, 0, NULL); g_regex_match (regex, message->plain, 0, &match_info); while (g_match_info_matches (match_info))