Skip to content

Commit

Permalink
Fix kt formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Scherzinger <[email protected]>
  • Loading branch information
AndyScherzinger committed Aug 17, 2023
1 parent b748e3b commit e872d4e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down Expand Up @@ -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)
}
Expand Down

0 comments on commit e872d4e

Please sign in to comment.