Skip to content

Commit

Permalink
Oops, fix getArtistsSongList
Browse files Browse the repository at this point in the history
  • Loading branch information
Davilarek committed Feb 19, 2024
1 parent bfdaaa5 commit 0cba814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ class TekstowoAPI {
);
const response = await this.makeRequest(requestOptions);
const responseText = unescapeJsonString(await response.text());
const pageCount = await this.getPagesForQuery(undefined, undefined, responseText);
const pageCount = await this.getPagesForQuery(undefined, responseText);
const base = responseText.split('-lista">')[1].split("<!-- end right column -->")[0].replace(/\n/g, "").replace(/\t/g, "");
/**
* @type {Array<KVPair<string, TekstowoAPIArtistID>>}
Expand Down

0 comments on commit 0cba814

Please sign in to comment.