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

Commit b25fbc4

Browse files
committed
Fix an error after rebasing with latest version
1 parent 79173af commit b25fbc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

owncloudComLibrary/src/main/java/com/owncloud/android/lib/resources/files/UploadFileFromFileSystemOperation.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ open class UploadFileFromFileSystemOperation(
9797
}
9898

9999
putMethod = PutMethod(URL(client.userFilesWebDavUri.toString() + WebdavUtils.encodePath(remotePath)), fileRequestBody!!).apply {
100-
setRetryOnConnectionFailure(false)
100+
retryOnConnectionFailure = false
101101
if (!requiredEtag.isNullOrBlank()) {
102102
addRequestHeader(HttpConstants.IF_MATCH_HEADER, requiredEtag)
103103
}

0 commit comments

Comments
 (0)