Merge branch 'favicon-protocol-fix' into 'main'
Favicon Protocol Fix See merge request vade/vade-mecum!8
This commit is contained in:
commit
9034c0d37c
|
@ -16,7 +16,7 @@ export default {
|
||||||
favicon() {
|
favicon() {
|
||||||
try {
|
try {
|
||||||
const url = new URL(this.appData.url);
|
const url = new URL(this.appData.url);
|
||||||
return `${url.protocol}${url.hostname}/favicon.ico`;
|
return `${url.protocol}//${url.hostname}/favicon.ico`;
|
||||||
} catch {
|
} catch {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,8 +17,8 @@ export default {
|
||||||
computed: {
|
computed: {
|
||||||
favicon() {
|
favicon() {
|
||||||
try {
|
try {
|
||||||
const url = new URL(this.bookmark.url);
|
const url = new URL(this.bookmark.url);
|
||||||
return `${url.protocol}${url.hostname}/favicon.ico`;
|
return `${url.protocol}//${url.hostname}/favicon.ico`;
|
||||||
} catch {
|
} catch {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue