Skip to content

Commit

Permalink
craftTracks при seed_artists может принять массив исполнителей
Browse files Browse the repository at this point in the history
  • Loading branch information
Chimildic committed Feb 18, 2021
1 parent 3de4001 commit f99a064
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/func.md
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ let tracks = Source.mineTracks({
> Можно частично повлиять на формируемые пятерки элементов. До вызыва функции применив одну из сортировок `Order`.
Аргументы
- (массив) `tracks` - треки для которых получать рекомендации.
- (массив) `tracks` - треки для которых получать рекомендации. При `key` равному `seed_artists` допустим массив исполнителей.
- (объект) `params` - дополнительные параметры.

Описание параметров
Expand Down
2 changes: 1 addition & 1 deletion library.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ const Source = (function () {
function mapToIds() {
let ids;
if (params.key == 'seed_artists') {
ids = tracks.map((t) => t.artists[0].id);
ids = tracks.map((t) => t.artists ? t.artists[0].id : t.id);
} else {
ids = tracks.map((t) => t.id);
params.key = 'seed_tracks';
Expand Down

0 comments on commit f99a064

Please sign in to comment.