mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 04:39:58 +00:00
services/soundcloud: properly check script hostname
This commit is contained in:
parent
0fefc4ac27
commit
4daeaa3107
1 changed files with 7 additions and 5 deletions
|
@ -18,7 +18,9 @@ async function findClientID() {
|
|||
for (let script of scripts) {
|
||||
let url = script[1];
|
||||
|
||||
if (url && !url.startsWith('https://a-v2.sndcdn.com')) return;
|
||||
if (!url?.startsWith('https://a-v2.sndcdn.com/')) {
|
||||
return;
|
||||
}
|
||||
|
||||
let scrf = await fetch(url).then(r => r.text()).catch(() => {});
|
||||
let id = scrf.match(/\("client_id=[A-Za-z0-9]{32}"\)/);
|
||||
|
|
Loading…
Reference in a new issue