fix soundcloud bug (typo)

This commit is contained in:
aria 2024-07-19 14:03:33 -04:00
parent 574915a234
commit 98cb1ff144

View File

@ -227,7 +227,7 @@ export default class Soundcloud implements Streamer {
async #getRawTrackInfo(id: number | string, client: ScClient) {
const api = JSON.parse(
await (
await fetch(this.#formatURL(`hhttps://api-v2.soundcloud.com/tracks/${id}`, client), {
await fetch(this.#formatURL(`https://api-v2.soundcloud.com/tracks/${id}`, client), {
method: 'get',
headers: headers(this.oauthToken)
})