1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

fix(ui): update share feature to correctly select title element and handle empty title

This commit is contained in:
Frédéric Guillot 2025-03-28 15:32:05 -07:00
parent 87fccfee3a
commit 969efd2af7

View file

@ -721,7 +721,7 @@ function isPlayerPlaying(element) {
*/
function handleShare() {
const link = document.querySelector(':is(a, button)[data-share-status]');
const title = document.querySelector("body > main > section > header > h1 > a");
const title = document.querySelector(".entry-header > h1 > a");
if (link.dataset.shareStatus === "shared") {
checkShareAPI(title, link.href);
}
@ -746,7 +746,7 @@ function checkShareAPI(title, url) {
}
try {
navigator.share({
title: title,
title: title ? title.textContent : url,
url: url
});
} catch (err) {