style: auto-fix linting issues
This commit is contained in:
parent
8cd9f782ba
commit
87a8368fc3
1 changed files with 2 additions and 2 deletions
|
|
@ -682,8 +682,8 @@ export class Player {
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let i = tracksToShuffle.length - 1; i > 0; i--) {
|
for (let i = tracksToShuffle.length - 1; i > 0; i--) {
|
||||||
const j = Math.floor(Math.random() * (i + 1));
|
const j = Math.floor(Math.random() * (i + 1));
|
||||||
[tracksToShuffle[i], tracksToShuffle[j]] = [tracksToShuffle[j], tracksToShuffle[i]];
|
[tracksToShuffle[i], tracksToShuffle[j]] = [tracksToShuffle[j], tracksToShuffle[i]];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (currentTrack) {
|
if (currentTrack) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue