fix error while trying to localize an URL

This commit is contained in:
teddit 2020-11-21 12:40:31 +01:00
parent 671cf9a324
commit 3edde76303
2 changed files with 6 additions and 5 deletions

View File

@ -70,10 +70,12 @@ meta(name="viewport", content="width=device-width, initial-scale=1.0")
}
function localize(url) {
let u = new URL(url)
if(u.host === 'www.reddit.com' || u.host === 'reddit.com') {
url = url.replace(u.host, 'teddit.net')
}
try {
let u = new URL(url)
if(u.host === 'www.reddit.com' || u.host === 'reddit.com') {
url = url.replace(u.host, 'teddit.net')
}
} catch(e) { }
return url
}

View File

@ -93,7 +93,6 @@ html
p YouTube video info:
p #{post.media.title} <a href="#{post.media.embed_src}">#{post.media.embed_src}</a>
p #{post.media.author_name} <a href="#{post.media.author_url}">#{post.media.author_url}</a>
p
else
if post.media.source === 'external'
if post.images