fix: more SongPlayer fixes

This commit is contained in:
Chayapak Supasakul 2025-10-19 14:33:27 +07:00
parent d579f8bff8
commit fa9c2954b3
Signed by: ChomeNS
SSH key fingerprint: SHA256:0YoxhdyXsgbc0nfeB2N6FYE60mxMU7DS4uCUMaw2mvA

View file

@ -151,7 +151,7 @@ public class SongPlayer {
e.printStackTrace(); e.printStackTrace();
} }
if (currentSong.paused) return; if (currentSong == null || currentSong.paused) return;
handlePlaying(); handlePlaying();