Loading src/main/java/at/bitfire/dav4android/DavResource.kt +8 −1 Original line number Diff line number Diff line Loading @@ -108,6 +108,13 @@ open class DavResource @JvmOverloads constructor( .execute() }.use { response -> checkStatus(response) if (response.code() == 207) /* Multiple resources were to be affected by the MOVE, but errors on some of them prevented the operation from taking place. [_] (RFC 4918 9.9.4. Status Codes for MOVE Method) */ throw HttpException(response) callback(response) } } Loading Loading
src/main/java/at/bitfire/dav4android/DavResource.kt +8 −1 Original line number Diff line number Diff line Loading @@ -108,6 +108,13 @@ open class DavResource @JvmOverloads constructor( .execute() }.use { response -> checkStatus(response) if (response.code() == 207) /* Multiple resources were to be affected by the MOVE, but errors on some of them prevented the operation from taking place. [_] (RFC 4918 9.9.4. Status Codes for MOVE Method) */ throw HttpException(response) callback(response) } } Loading