Pārlūkot izejas kodu

Get the like number from proper place

When like button is clicked, only one of the two aria-label attributes gets updated. Use the correct one to reflect latest like count. Affects user option "re-format like numbers"

Attn #561
Aneimytis 3 gadi atpakaļ
vecāks
revīzija
df742d0566
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      Extensions/combined/src/state.js

+ 1 - 1
Extensions/combined/src/state.js

@@ -153,7 +153,7 @@ function getLikeCountFromButton() {
     return 0;
   }
   let likesStr = getLikeButton()
-    .querySelector("button")
+    .querySelector("yt-formatted-string#text")
     .getAttribute("aria-label")
     .replace(/\D/g, "");
   return likesStr.length > 0 ? parseInt(likesStr) : false;