Fix URL fetching

This commit is contained in:
Marie
2021-04-21 04:44:44 +02:00
committed by GitHub
parent 08ec7fadac
commit 3cc288e014

View File

@@ -250,7 +250,6 @@ function updateMediaInfo(options, notify) {
*/ */
setInterval(function () { setInterval(function () {
const title = elements.getText("title"); const title = elements.getText("title");
//const id = elements.get("url").href.replace(/[^0-9]/g, "");
const artists = elements.getText("artists"); const artists = elements.getText("artists");
const current = elements.getText("current"); const current = elements.getText("current");
const duration = elements.getText("duration"); const duration = elements.getText("duration");
@@ -285,12 +284,12 @@ setInterval(function () {
} }
// Video/Song check if it's a video return URL as undefined due to it not having an id. // Video/Song check if it's a video return URL as undefined due to it not having an id.
switch(elements.get("url")) { switch(elements.get("title").querySelector("a")) {
case null: case null:
currentURL = undefined; currentURL = undefined;
break; break;
default: default:
const id = elements.get("url").href.replace(/[^0-9]/g, ""); const id = elements.get("title").querySelector("a").href.replace(/[^0-9]/g, "");
currentURL = `https://tidal.com/browse/track/${id}`; currentURL = `https://tidal.com/browse/track/${id}`;
break; break;
} }