mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-20 07:22:16 +03:00
🔀 Merge pull request #926 from dkyeremeh/subdomain-favicon
Allow favicons for subdomains
This commit is contained in:
commit
e8b30b9c25
@ -202,7 +202,7 @@ export default {
|
|||||||
/* For a given URL, return the hostname only. Used for favicon and generative icons */
|
/* For a given URL, return the hostname only. Used for favicon and generative icons */
|
||||||
getHostName(url) {
|
getHostName(url) {
|
||||||
try {
|
try {
|
||||||
return new URL(url).hostname.split('.').slice(-2).join('.');
|
return new URL(url).hostname;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
ErrorHandler('Unable to format URL');
|
ErrorHandler('Unable to format URL');
|
||||||
return url;
|
return url;
|
||||||
|
Loading…
Reference in New Issue
Block a user