Skip to content
Snippets Groups Projects
Commit f7407d50 authored by Geoffrey Métais's avatar Geoffrey Métais Committed by Nicolas Pomepuy
Browse files

Fix audio browser empty view

parent 2fdb6518
No related branches found
No related tags found
1 merge request!504Audio empty
Pipeline #14925 passed with stage
in 5 minutes and 56 seconds
......@@ -322,7 +322,7 @@ abstract class BaseAudioBrowser<T : MedialibraryViewModel> : MediaBrowserFragmen
}
protected val empty: Boolean
get() = viewModel.isEmpty() && getCurrentAdapter()?.isEmpty == false
get() = viewModel.isEmpty() && getCurrentAdapter()?.isEmpty != false
override fun getMultiHelper(): MultiSelectHelper<T>? = getCurrentAdapter()?.multiSelectHelper as? MultiSelectHelper<T>
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment