Bugzilla – Bug 2085
Using remote 'add' to end of Playlist causes Playlist to restart
Last modified: 2008-09-15 14:36:01 UTC
svn 4156 / ubuntu / SB2 A short press of the 'add' button on the remote adds the song or album to the end of the current Playlist (as expected), but also restarts the Playlist playing from the begining of the first song again. This doesn't appear to happen when adding to the end of the Playlist using the web UI.
what are you adding, from which browse mode?
Adding either an album or a song from Browse Music Folder mode. Good point! - it seems to be Browse Music Folder specific, rather than SB remote specific.
so browse albums/artists, etc all work ok?
Yes - seem to.
looks like a simple change. Change Control/Command.pm line 533 to: my $jumpToIndex; This leaves $jumpToIndex undefined for the 'add'/'insert' case, so that load_done does not call Source::jumpto (which is what pops the playback to the start, with the existing code since $jumpToIndex is set to 0 by default currently)
Fixed in subversion change 4191