From 890d197c5364508c78413963744f4a656ab8c910 Mon Sep 17 00:00:00 2001 From: Clayton Craft Date: Wed, 19 May 2021 12:23:27 -0700 Subject: [PATCH] url-mode: add support for matching emxc:// URIs This protocol is used by matrix for encrypted attachments/files. --- url-mode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/url-mode.c b/url-mode.c index 6aa56a43..d755e417 100644 --- a/url-mode.c +++ b/url-mode.c @@ -220,6 +220,7 @@ auto_detected(const struct terminal *term, enum url_action action, L"file://", L"gemini://", L"gopher://", + L"emxc://", }; size_t max_prot_len = 0;