See also issue #195
If you have a cue sheet with multiple tracks, and you play a track which is not the last track, the client will continue to play the next track without ending.
Please check the following settings.
Settings
-> Transcoding
-> Downsample command
To fix this, you need to add split option %S
to the beginning of the command.
Before: ffmpeg -i %s -map 0:0 -b:a %bk -v 0 -f mp3 -
After: ffmpeg %S -i %s -map 0:0 -b:a %bk -v 0 -f mp3 -