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
+6 -4
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
}