Merge pull request #375 from watchdogsrox/watchdogsrox-patch-1
Fixed spotify album/playlist loading
This commit is contained in:
commit
e1be3f73ca
1 changed files with 9 additions and 12 deletions
|
@ -184,10 +184,7 @@ export class Player extends EventEmitter {
|
|||
const playlist = await spotify.getData(query);
|
||||
if (!playlist) return void this.emit(PlayerEvents.NO_RESULTS, message, query);
|
||||
|
||||
// tslint:disable:no-shadowed-variable
|
||||
const tracks = [];
|
||||
|
||||
for (const item of playlist.tracks.items) {
|
||||
const tracks = await Promise.all(playlist.tracks.items.map(async (track) => {
|
||||
const sq =
|
||||
queryType === 'spotify_album'
|
||||
? `${item.artists[0].name} - ${item.name}`
|
||||
|
@ -199,8 +196,8 @@ export class Player extends EventEmitter {
|
|||
pl: true
|
||||
});
|
||||
|
||||
if (data[0]) tracks.push(data[0]);
|
||||
}
|
||||
return results[0];
|
||||
}));
|
||||
|
||||
if (!tracks.length) return void this.emit(PlayerEvents.NO_RESULTS, message, query);
|
||||
|
||||
|
|
Loading…
Reference in a new issue