Don't clear random list when appending

This commit is contained in:
tzugen 2021-12-21 23:44:18 +01:00
parent c2b23c4001
commit a5e8daa912
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class AlbumListModel(application: Application) : GenericListModel(application) {
// If we are refreshing the random list, we want to avoid items moving across the screen,
// by clearing the list first
if (refresh && albumListType == "random") {
if (refresh && !append && albumListType == "random") {
list.postValue(listOf())
}