mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-14 15:37:12 +03:00
Fixed getting channel ID for invidious.
This commit is contained in:
12
content.js
12
content.js
@@ -518,17 +518,17 @@ function getChannelID() {
|
|||||||
|
|
||||||
if (channelNameContainer !== null) {
|
if (channelNameContainer !== null) {
|
||||||
channelURLContainer = channelNameContainer.querySelector("#container").querySelector("#text-container").querySelector("#text").firstElementChild;
|
channelURLContainer = channelNameContainer.querySelector("#container").querySelector("#text-container").querySelector("#text").firstElementChild;
|
||||||
|
} else if (onInvidious) {
|
||||||
|
// Unfortunately, the Invidious HTML doesn't have much in the way of element identifiers...
|
||||||
|
channelContainers = document.querySelector("body > div > div.pure-u-1.pure-u-md-20-24 div.pure-u-1.pure-u-lg-3-5 > div > a");
|
||||||
|
if (channelContainers.length != 0) {
|
||||||
|
channelURLContainer = channelContainers;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
//old YouTube theme
|
//old YouTube theme
|
||||||
let channelContainers = document.getElementsByClassName("yt-user-info");
|
let channelContainers = document.getElementsByClassName("yt-user-info");
|
||||||
if (channelContainers.length != 0) {
|
if (channelContainers.length != 0) {
|
||||||
channelURLContainer = channelContainers[0].firstElementChild;
|
channelURLContainer = channelContainers[0].firstElementChild;
|
||||||
} else if (onInvidious) {
|
|
||||||
// Unfortunately, the Invidious HTML doesn't have much in the way of element identifiers...
|
|
||||||
channelContainers = document.querySelector("body > div > div.pure-u-1.pure-u-md-20-24 div.pure-u-1.pure-u-lg-3-5 > div > a");
|
|
||||||
if (channelContainers.length != 0) {
|
|
||||||
channelURLContainer = channelContainers;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user