Fixed href rewrite

This commit is contained in:
Marcus Noble 2021-03-03 19:54:54 +00:00
parent a96a43f9ec
commit 9c07dd226e
1 changed files with 2 additions and 2 deletions

View File

@ -105,13 +105,13 @@ class FeedItem extends HTMLElement {
i.src = url.origin + i.getAttribute('src');
});
[...this.shadowRoot.querySelectorAll('a[href^="/"]')].forEach(a => {
a.href = url.origin + a.getAttribute('src');
a.href = url.origin + a.getAttribute('href');
});
[...this.shadowRoot.querySelectorAll('img:not([src^=http])')].forEach(i => {
i.src = url.origin +'/'+ i.getAttribute('src');
});
[...this.shadowRoot.querySelectorAll('a:not([href^=http])')].forEach(a => {
a.href = url.origin +'/'+ a.getAttribute('src');
a.href = url.origin +'/'+ a.getAttribute('href');
});
})
}