From feeb233cc2782a2688ac3df88762ba9f63afc060 Mon Sep 17 00:00:00 2001 From: Adam Heinz Date: Wed, 25 Mar 2026 14:35:11 -0400 Subject: [PATCH] [IMP] Allow webcal url scheme. --- addons/web/static/src/webclient/actions/action_service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/webclient/actions/action_service.js b/addons/web/static/src/webclient/actions/action_service.js index 4f3e2826e183ff..6c98f7d1144519 100644 --- a/addons/web/static/src/webclient/actions/action_service.js +++ b/addons/web/static/src/webclient/actions/action_service.js @@ -1107,7 +1107,7 @@ export function makeActionManager(env, router = _router) { */ function _executeActURLAction(action, options) { let url = action.url; - if (url && !(url.startsWith("http") || url.startsWith("/"))) { + if (url && !(url.startsWith("http") || url.startsWith("/") || url.startsWith("webcal://"))) { url = "/" + url; } if (action.target === "self") {