We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98675e4 commit 0582ba6Copy full SHA for 0582ba6
CustomApps/lyrics-plus/index.js
@@ -288,7 +288,9 @@ class LyricsContainer extends react.Component {
288
}
289
290
async fetchTempo(uri) {
291
- const audio = await Spicetify.CosmosAsync.get(`https://spclient.wg.spotify.com/audio-attributes/v1/audio-features/${uri.split(":")[2]}?format=json`);
+ const audio = await Spicetify.CosmosAsync.get(
292
+ `https://spclient.wg.spotify.com/audio-attributes/v1/audio-features/${uri.split(":")[2]}?format=json`
293
+ );
294
let tempo = audio.tempo;
295
296
const MIN_TEMPO = 60;
0 commit comments