Fix kt formatting

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2023-08-16 12:56:00 +02:00
parent b748e3b27a
commit e872d4efbc
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -123,8 +123,8 @@ class SharedListFragment : OCFileListFragment(), Injectable {
lifecycleScope.launch {
isLoading = true
if (partialFiles != null) {
val files = partialFiles.toMutableSet().mapNotNull {partialFile ->
fetchFileData(partialFile).also {fetched ->
val files = partialFiles.toMutableSet().mapNotNull { partialFile ->
fetchFileData(partialFile).also { fetched ->
if (fetched == null) {
DisplayUtils.showSnackMessage(requireActivity(), R.string.error_retrieving_file)
}
@ -176,7 +176,7 @@ class SharedListFragment : OCFileListFragment(), Injectable {
override fun onFileActionChosen(itemId: Int, checkedFiles: MutableSet<OCFile>?): Boolean {
// fetch all files and run selected action
if (itemId != R.id.action_select_all_action_menu && itemId != R.id.action_deselect_all_action_menu) {
fetchAllAndRun(checkedFiles) {files ->
fetchAllAndRun(checkedFiles) { files ->
exitSelectionMode()
super.onFileActionChosen(itemId, files)
}