🔀 Merge pull request #926 from dkyeremeh/subdomain-favicon

Allow favicons for subdomains
This commit is contained in:
Alicia Sykes
2022-10-30 16:08:21 +00:00
committed by GitHub

View File

@@ -202,7 +202,7 @@ export default {
/* For a given URL, return the hostname only. Used for favicon and generative icons */
getHostName(url) {
try {
return new URL(url).hostname.split('.').slice(-2).join('.');
return new URL(url).hostname;
} catch (e) {
ErrorHandler('Unable to format URL');
return url;