mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-06-27 09:12:43 +02:00
Fix shuffle bug for long Spotify playlists
A random sample of 50 songs is taken for long playlists since mapping Spotify -> YouTube is expensive. However, the function used previously allowed for duplicates within that sample of 50.
This commit is contained in:
parent
d61107aedd
commit
cf75afd4bc
4 changed files with 17 additions and 23 deletions
|
@ -1,8 +1,9 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"lib": ["ES2018"],
|
||||
"target": "es6",
|
||||
"lib": ["ES2019"],
|
||||
"target": "es2018",
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"declaration": true,
|
||||
"outDir": "dist",
|
||||
"declarationDir": "dts",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue