Fixing error.

This commit is contained in:
Sergiotarxz 2023-08-30 00:08:26 +02:00
parent fb7b97cd37
commit 777ed80e8d
2 changed files with 6 additions and 3 deletions

View File

@ -52,10 +52,11 @@ function executeAndroidExclusiveCode(android) {
pinToHomeUrl.addEventListener('click', () => {
const url = new URL(window.location.href)
const pathandQuery = url.pathname + url.search;
const label = pathandQuery.replace(/^.*\/.?/g, '').
const label = pathandQuery.replace(/^.*\//g, '').
replace(/(?:^|-)\w/g, function(character) {
return character.toUpperCase()
});
}) + ' - Burguillos.info';
console.log(label)
const firstImg = document.querySelector('div.description img');
let iconUrl;
if (firstImg !== null) {
@ -65,6 +66,8 @@ function executeAndroidExclusiveCode(android) {
}
if (iconUrl === undefined) {
const imagePreview = document.querySelector('meta[name="image"]');
console.error(imagePreview.content);
console.error(absoluteToHost(imagePreview.content));
iconUrl = absoluteToHost(imagePreview.content);
}
console.error(iconUrl);

File diff suppressed because one or more lines are too long