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

Fixed case of 'no update of upload permission' in operation updating public shares

This commit is contained in:
David A. Velasco 2016-06-07 13:08:12 +02:00
parent 785562038e
commit cdce258a3f

View File

@ -140,9 +140,10 @@ public class UpdateRemoteShareOperation extends RemoteOperation {
/**
* Enable upload permissions to update in Share resource.
*
* @param publicUpload Upload Permission to set to the target share.
* @param publicUpload Upload permission to set to the target share.
* Null results in no update applied to the upload permission.
*/
public void setPublicUpload(boolean publicUpload) {
public void setPublicUpload(Boolean publicUpload) {
mPublicUpload = publicUpload;
}