fix: corrected folder navigation, now displaying correct subfolders

This commit is contained in:
antonio 2023-08-31 16:20:05 +02:00
parent 1a75369591
commit 2a74f51f8d
3 changed files with 6 additions and 4 deletions

View file

@ -23,8 +23,8 @@ public class IndexViewModel extends AndroidViewModel {
directoryRepository = new DirectoryRepository();
}
public MutableLiveData<Indexes> getIndexes() {
return directoryRepository.getIndexes(null, null);
public MutableLiveData<Indexes> getIndexes(String musicFolderId) {
return directoryRepository.getIndexes(musicFolderId, null);
}
public String getMusicFolderName() {