style: auto-fix linting issues

This commit is contained in:
SamidyFR 2026-02-21 19:58:57 +00:00 committed by github-actions[bot]
parent 8cd9f782ba
commit 87a8368fc3

View file

@ -682,8 +682,8 @@ export class Player {
}
for (let i = tracksToShuffle.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[tracksToShuffle[i], tracksToShuffle[j]] = [tracksToShuffle[j], tracksToShuffle[i]];
const j = Math.floor(Math.random() * (i + 1));
[tracksToShuffle[i], tracksToShuffle[j]] = [tracksToShuffle[j], tracksToShuffle[i]];
}
if (currentTrack) {