We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6926d00 commit 144312dCopy full SHA for 144312d
popup/popup.js
@@ -202,7 +202,7 @@ const renderGroupVideo = (group, video) => {
202
203
const link = (selector, opts, children) => {
204
if (!opts.href) { return m(selector, { href: '#', ...opts}, children); }
205
- let url = opts.href.replace(/^https?:\/\/(www\.)?/, '');
+ let url = decodeURIComponent(opts.href.replace(/^https?:\/\/(www\.)?/, ''));
206
if (opts.target === '_blank') { url += ' ⇗'; }
207
let el;
208
return m(selector, {
0 commit comments