We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba2745a commit 3153281Copy full SHA for 3153281
library/src/main/java/com/owncloud/android/lib/resources/shares/UpdateShareRemoteOperation.java
@@ -274,11 +274,11 @@ public RemoteOperationResult<List<OCShare>> run(NextcloudClient client) {
274
}
275
276
if (note != null) {
277
- parametersToUpdate.add(new Pair<>(PARAM_NOTE, URLEncoder.encode(note)));
+ parametersToUpdate.add(new Pair<>(PARAM_NOTE, note));
278
279
280
if (label != null) {
281
- parametersToUpdate.add(new Pair<>(PARAM_LABEL, URLEncoder.encode(label)));
+ parametersToUpdate.add(new Pair<>(PARAM_LABEL, label));
282
283
284
/// perform required PUT requests
0 commit comments