diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/playlist.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/playlist.c b/src/playlist.c index 60b40f4f9..8d145c314 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -954,7 +954,10 @@ int previousSongInPlaylist(FILE * fp) { syncPlaylistWithQueue(0); - if (getPlayerElapsedTime()>PLAYLIST_PREV_UNLESS_ELAPSED) { + if (getPlayerElapsedTime()>PLAYLIST_PREV_UNLESS_ELAPSED && + playlist.songs[playlist.order[playlist.current]]->type + != SONG_TYPE_URL) + { return playPlaylistOrderNumber(fp,playlist.current); } else { |