style: auto-fix linting issues

This commit is contained in:
JulienMaille 2026-01-29 20:50:15 +00:00 committed by github-actions[bot]
parent 08ca581c79
commit 51af77d828

View file

@ -472,7 +472,11 @@ document.addEventListener('DOMContentLoaded', async () => {
// DEV: Auto-open fullscreen mode if ?fullscreen=1 in URL
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.get('fullscreen') === '1' && fullscreenOverlay && getComputedStyle(fullscreenOverlay).display === 'none') {
if (
urlParams.get('fullscreen') === '1' &&
fullscreenOverlay &&
getComputedStyle(fullscreenOverlay).display === 'none'
) {
const nextTrack = player.getNextTrack();
ui.showFullscreenCover(player.currentTrack, nextTrack, lyricsManager, audioPlayer);
}