about summary refs log tree commit diff stats
path: root/src/ui/window_list.c
diff options
context:
space:
mode:
authorPierre Mazière <pierre.maziere@gmx.com>2020-06-07 22:17:55 +0200
committerMichael Vetter <jubalh@iodoru.org>2020-06-25 15:02:56 +0200
commit64eb11fbafc028db9e32b76b47a31e74b257d2fd (patch)
treecfb5e53bb2b874ee42ad72d37c6a1c7959dec81a /src/ui/window_list.c
parent906c02015531ee0dc9996dccb68be5fea0e80107 (diff)
downloadprofani-tty-64eb11fbafc028db9e32b76b47a31e74b257d2fd.tar.gz
Add aesgcm to urls grabber
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
Diffstat (limited to 'src/ui/window_list.c')
-rw-r--r--src/ui/window_list.c2
1 files changed, 1 insertions, 1 deletions
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))