diff options
author | Matt <mattkohls13@gmail.com> | 2018-05-30 13:31:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-30 13:31:09 -0400 |
commit | c23f6622afe07fff1362494de8ce9890e7767a7e (patch) | |
tree | 94474465a4c727aa92dd9b5fca26b3184b5d05b4 /src/main/java/soundchan/TrackScheduler.java | |
parent | 71238de0c1d63f18610c80222e587944ff5bf206 (diff) | |
parent | 0fe63e59569f161628574159a8f8d318abbe3e0e (diff) | |
download | SoundChan-c23f6622afe07fff1362494de8ce9890e7767a7e.tar.gz SoundChan-c23f6622afe07fff1362494de8ce9890e7767a7e.tar.bz2 SoundChan-c23f6622afe07fff1362494de8ce9890e7767a7e.zip |
Merge pull request #7 from bwaggone/bugfix/not-playing-soundbite
Fix bug
Diffstat (limited to 'src/main/java/soundchan/TrackScheduler.java')
-rw-r--r-- | src/main/java/soundchan/TrackScheduler.java | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/main/java/soundchan/TrackScheduler.java b/src/main/java/soundchan/TrackScheduler.java index cc68335..cf7b1f8 100644 --- a/src/main/java/soundchan/TrackScheduler.java +++ b/src/main/java/soundchan/TrackScheduler.java @@ -46,14 +46,16 @@ public class TrackScheduler extends AudioEventAdapter { public void playNow(AudioTrack track) { AudioTrack currenlyPlaying = player.getPlayingTrack(); - AudioTrack cloned = currenlyPlaying.makeClone(); - cloned.setPosition(currenlyPlaying.getPosition()); - - // Don't re-enqueue if its just a soundclip - if(!(currenlyPlaying.getInfo().uri.contains(".mp3") || currenlyPlaying.getInfo().uri.contains(".wav"))) - // Re-enqueue the track - queue.addFirst(cloned); + // If something is currently playing, pause it and put it back in the queue + if(currenlyPlaying != null) { + AudioTrack cloned = currenlyPlaying.makeClone(); + cloned.setPosition(currenlyPlaying.getPosition()); + // Don't re-enqueue if its just a soundclip + if (!(currenlyPlaying.getInfo().uri.contains(".mp3") || currenlyPlaying.getInfo().uri.contains(".wav"))) + // Re-enqueue the track + queue.addFirst(cloned); + } player.startTrack(track, false); } |