rename to ReadFolderListingOperation

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-06-07 20:46:55 +02:00
parent 4f234032aa
commit 3330df3b66
No known key found for this signature in database
GPG Key ID: 6CADC7E3523C308B
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ import okhttp3.OkHttpClient
import java.io.File
import java.io.IOException
class ReadFilesystemOperation(okHttpClient: OkHttpClient, currentUser: UserEntity, path: String, depth: Int) {
class ReadFolderListingOperation(okHttpClient: OkHttpClient, currentUser: UserEntity, path: String, depth: Int) {
private val okHttpClient: OkHttpClient
private val url: String
private val depth: Int

View File

@ -20,7 +20,7 @@
package com.nextcloud.talk.remotefilebrowser.repositories
import com.nextcloud.talk.components.filebrowser.webdav.ReadFilesystemOperation
import com.nextcloud.talk.components.filebrowser.webdav.ReadFolderListingOperation
import com.nextcloud.talk.models.database.UserEntity
import com.nextcloud.talk.remotefilebrowser.model.RemoteFileBrowserItem
import com.nextcloud.talk.utils.database.user.CurrentUserProvider
@ -40,7 +40,7 @@ class RemoteFileBrowserItemsRepositoryImpl @Inject constructor(
Observable<List<RemoteFileBrowserItem>> {
return Observable.fromCallable {
val operation =
ReadFilesystemOperation(
ReadFolderListingOperation(
okHttpClient,
userEntity,
path,