about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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))