Browse Source

Fix kt formatting

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 1 year ago
parent
commit
e872d4efbc

+ 3 - 3
app/src/main/java/com/owncloud/android/ui/fragment/SharedListFragment.kt

@@ -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)
             }