favicon service url

This commit is contained in:
antelle 2020-03-24 07:55:28 +01:00
parent 5011c3ba04
commit 00d7ff6604
1 changed files with 4 additions and 1 deletions

View File

@ -92,7 +92,10 @@ class IconSelectView extends View {
url = 'http://' + url;
}
if (useService) {
return 'https://favicon.keeweb.info/' + url.replace(/^.*:\/+/, '').replace(/\/.*/, '');
return (
'https://services.keeweb.info/favicon/' +
url.replace(/^.*:\/+/, '').replace(/\/.*/, '')
);
}
return url;
}