mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-16 12:42:06 +00:00
fix: remove unused value
This commit is contained in:
@ -288,7 +288,7 @@ class MusixMatchAPI {
|
|||||||
private async getToken() {
|
private async getToken() {
|
||||||
const endpoint = 'token.get';
|
const endpoint = 'token.get';
|
||||||
const params = new URLSearchParams({ app_id: this.app_id });
|
const params = new URLSearchParams({ app_id: this.app_id });
|
||||||
const [_, json, headers] = await netFetch(
|
const [, json, headers] = await netFetch(
|
||||||
`${this.baseUrl}${endpoint}?${params}`,
|
`${this.baseUrl}${endpoint}?${params}`,
|
||||||
{
|
{
|
||||||
headers: Object.assign({ Cookie: this.cookie }, this.headers),
|
headers: Object.assign({ Cookie: this.cookie }, this.headers),
|
||||||
|
|||||||
Reference in New Issue
Block a user