Skip to content

Commit

Permalink
1.0.7 - fix youtube shuffle info getter
Browse files Browse the repository at this point in the history
  • Loading branch information
aminomancer committed Mar 13, 2023
1 parent 6b51ba2 commit 205dd02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Websites/Youtube.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ function checkTopLevelButton(menu, { query, val } = {}) {

return (
button.classList.contains("style-default-active") ||
button.getAttribute("aria-pressed") == "true"
button.getAttribute("aria-pressed") == "true" ||
!!button.querySelector("[aria-pressed='true']")
);
}

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "WebNowPlaying Companion - Personal Edit",
"short_name": "WebNowPlayingPersonal",
"description": "WebNowPlaying Companion with a variety of modifications, fixes, and updates. Especially a lot of feature improvements and optimizations for YouTube.",
"version": "1.0.6",
"version": "1.0.7",
"browser_specific_settings": {
"gecko": {
"id": "WNPC@aminomancer",
Expand Down

0 comments on commit 205dd02

Please sign in to comment.