aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/playlist.c')
-rw-r--r--src/playlist.c5
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 {