From 87a8368fc3d5d17283a8680313d552e49d2dd6a7 Mon Sep 17 00:00:00 2001 From: SamidyFR <168582143+SamidyFR@users.noreply.github.com> Date: Sat, 21 Feb 2026 19:58:57 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/player.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/player.js b/js/player.js index 2013471..7fdcab5 100644 --- a/js/player.js +++ b/js/player.js @@ -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) {