Skip to content

Commit a7d1bee

Browse files
committed
indicate parameters
Signed-off-by: alperozturk <alper_ozturk@proton.me>
1 parent df32926 commit a7d1bee

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

app/src/main/java/com/owncloud/android/ui/fragment/share/RemoteShareRepository.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ class RemoteShareRepository(
2727
override fun refreshSharesForFolder(remotePath: String) {
2828
scope.launch(Dispatchers.IO) {
2929
val client = clientRepository.getOwncloudClient() ?: return@launch
30-
val operation = GetSharesForFileOperation(remotePath, true, false, fileDataStorageManager)
30+
val operation =
31+
GetSharesForFileOperation(
32+
path = remotePath,
33+
reshares = true,
34+
subfiles = false,
35+
storageManager = fileDataStorageManager
36+
)
3137

3238
@Suppress("DEPRECATION")
3339
val result = operation.execute(client)

0 commit comments

Comments
 (0)