now actually randomly selects song on launch

This commit is contained in:
2018-08-08 23:32:25 -05:00
parent 324e3afe5a
commit 5b388e8403
2 changed files with 3 additions and 1 deletions

View File

@@ -193,6 +193,9 @@ public class MusicController extends Observable implements OnCompletionListener,
@Override
public void update(Observable o, Object arg) {
if (o == musicList) {
if (shuffle) {
shuffle(false);
}
loadMusic();
}
}