diff --git a/src/commands/connect/plugin.ts b/src/commands/connect/plugin.ts index 9cbd5d3..6404005 100644 --- a/src/commands/connect/plugin.ts +++ b/src/commands/connect/plugin.ts @@ -106,6 +106,8 @@ const processLink = (link: Link): Link => { if (!ALLOWED_LINK_TYPES.includes(link.type)) { link.type = LinkType.custom; } + + link.url = encodeURI(link.url); return link; };