1
0
Fork 0

Show app restore sets sorted by latest first

This commit is contained in:
Torsten Grote 2024-04-29 15:18:27 -03:00
parent 7a10dff51f
commit 6bb05e60e5
No known key found for this signature in database
GPG key ID: 3E5F77D92CF891FF

View file

@ -44,9 +44,9 @@ class RestoreSetFragment : Fragment() {
// decryption will fail when the device is locked, so keep the screen on to prevent locking
requireActivity().window.addFlags(FLAG_KEEP_SCREEN_ON)
viewModel.restoreSetResults.observe(viewLifecycleOwner, { result ->
viewModel.restoreSetResults.observe(viewLifecycleOwner) { result ->
onRestoreResultsLoaded(result)
})
}
skipView.setOnClickListener {
viewModel.onFinishClickedAfterRestoringAppData()
@ -72,7 +72,10 @@ class RestoreSetFragment : Fragment() {
listView.visibility = VISIBLE
progressBar.visibility = INVISIBLE
listView.adapter = RestoreSetAdapter(viewModel, results.restorableBackups)
listView.adapter = RestoreSetAdapter(
listener = viewModel,
items = results.restorableBackups.sortedByDescending { it.time },
)
}
}