Skip to content

Commit

Permalink
use latest dav4jvm release
Browse files Browse the repository at this point in the history
Signed-off-by: tobiasKaminsky <[email protected]>
  • Loading branch information
tobiasKaminsky committed Nov 1, 2022
1 parent 684d1e1 commit a70b71f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ configurations {
dependencies {
implementation 'org.apache.jackrabbit:jackrabbit-webdav:2.13.5'
api 'com.squareup.okhttp3:okhttp:5.0.0-alpha.10'
implementation 'com.github.bitfireAT:dav4jvm:main-SNAPSHOT'
implementation 'com.github.bitfireAT:dav4jvm:2.2'
// in transition phase, we use old and new libs
implementation group: 'com.google.code.gson', name: 'gson', version: '2.9.1'
implementation 'androidx.annotation:annotation:1.5.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ public RemoteOperationResult run(NextcloudClient client) {
HttpUrl.get(client.getDavUri().toString()))
.search(searchString, (response, hrefRelation) -> {
responses.add(response);
return null;
});

// get data from remote folder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ public RemoteOperationResult run(NextcloudClient client) {
HttpUrl.get(fullFilePath))
.proppatch(newProperties, removeProperties, (response, hrefRelation) -> {
//resultCode = response.isSuccess();
return null;
});

result = new RemoteOperationResult<>(RemoteOperationResult.ResultCode.OK);
Expand Down

0 comments on commit a70b71f

Please sign in to comment.