1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Clipper: Minor fixes

This commit is contained in:
Laurent Cozic
2019-07-15 01:17:17 +01:00
parent 74ee629266
commit c75618eb8f
2 changed files with 4 additions and 1 deletions

View File

@ -52,6 +52,7 @@ const htmlUtils = {
for (const anchor of anchors) {
const href = anchor.getAttribute('href');
if (!href) continue;
const newHref = urlUtils.prependBaseUrl(href, baseUrl);
anchor.setAttribute('href', newHref);
}