Create list of tracks common to two playlists #189
Answered
by
Chimildic
Wibblyw
asked this question in
Помощь с алгоритмом
-
Is there a function/filter that directly supports this? |
Beta Was this translation helpful? Give feedback.
Answered by
Chimildic
Jun 21, 2022
Replies: 1 comment 1 reply
-
Use Filter.removeTracks with invert argument set to let p1 = Source.getPlaylistTracks('', 'id1');
let p2 = Source.getPlaylistTracks('', 'id2');
Filter.removeTracks(p1, p2, true); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Wibblyw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use Filter.removeTracks with invert argument set to
true