Favicon Protocol Fix
Fixed issue where favicons would not display properly across similar protocols
This commit is contained in:
parent
2f6df56e82
commit
6532721410
|
@ -16,7 +16,7 @@ export default {
|
|||
favicon() {
|
||||
try {
|
||||
const url = new URL(this.appData.url);
|
||||
return `${url.protocol}${url.hostname}/favicon.ico`;
|
||||
return `${url.protocol}//${url.hostname}/favicon.ico`;
|
||||
} catch {
|
||||
return "";
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ export default {
|
|||
favicon() {
|
||||
try {
|
||||
const url = new URL(this.bookmark.url);
|
||||
return `${url.protocol}${url.hostname}/favicon.ico`;
|
||||
return `${url.protocol}//${url.hostname}/favicon.ico`;
|
||||
} catch {
|
||||
return "";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue