Просмотр исходного кода

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

Frédéric Guillot 1 год назад
Родитель
Сommit
969efd2af7
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      internal/ui/static/js/app.js

+ 2 - 2
internal/ui/static/js/app.js

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