1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Fixed bug resulting in false success when one of multiple Share properties are updated

This commit is contained in:
David A. Velasco 2016-04-01 14:57:46 +02:00
parent 39e3ddaa07
commit 740f0deb82

View File

@ -217,6 +217,9 @@ public class UpdateRemoteShareOperation extends RemoteOperation {
} else {
result = new RemoteOperationResult(false, status, put.getResponseHeaders());
}
if (!result.isSuccess()) {
break;
}
}
} catch (Exception e) {