fix: remove unused value

This commit is contained in:
JellyBrick
2025-07-10 16:05:12 +09:00
parent f73188ab83
commit 61e19cfa9f

View File

@ -288,7 +288,7 @@ class MusixMatchAPI {
private async getToken() {
const endpoint = 'token.get';
const params = new URLSearchParams({ app_id: this.app_id });
const [_, json, headers] = await netFetch(
const [, json, headers] = await netFetch(
`${this.baseUrl}${endpoint}?${params}`,
{
headers: Object.assign({ Cookie: this.cookie }, this.headers),