Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit 26def4f

Browse files
theScrabiabelgardep
authored andcommitted
return sharees without exact match
1 parent 7402c89 commit 26def4f

File tree

1 file changed

+1
-4
lines changed
  • owncloudComLibrary/src/main/java/com/owncloud/android/lib/resources/shares/responses

1 file changed

+1
-4
lines changed

owncloudComLibrary/src/main/java/com/owncloud/android/lib/resources/shares/responses/ShareeResponse.kt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,8 @@ data class ShareeOcsResponse(
4141
@Json(name = "users")
4242
val users: List<ShareeItem>?
4343
) {
44-
fun getFlatRepresentation()
44+
fun getFlatRepresentationWithoutExact()
4545
= ArrayList<ShareeItem>().apply {
46-
if(exact != null) {
47-
addAll(exact.getFlatRepresentation())
48-
}
4946
if(users != null) {
5047
addAll(users)
5148
}

0 commit comments

Comments
 (0)