indicate parameters

Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
alperozturk 2025-06-12 15:41:07 +02:00
parent df32926a23
commit a7d1beef56
No known key found for this signature in database
GPG Key ID: 4E577DC593B59BDF

View File

@ -27,7 +27,13 @@ class RemoteShareRepository(
override fun refreshSharesForFolder(remotePath: String) {
scope.launch(Dispatchers.IO) {
val client = clientRepository.getOwncloudClient() ?: return@launch
val operation = GetSharesForFileOperation(remotePath, true, false, fileDataStorageManager)
val operation =
GetSharesForFileOperation(
path = remotePath,
reshares = true,
subfiles = false,
storageManager = fileDataStorageManager
)
@Suppress("DEPRECATION")
val result = operation.execute(client)