Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: tobiasKaminsky <[email protected]>
  • Loading branch information
tobiasKaminsky committed Jun 20, 2024
1 parent ba2745a commit 3153281
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,11 @@ public RemoteOperationResult<List<OCShare>> run(NextcloudClient client) {
}

if (note != null) {
parametersToUpdate.add(new Pair<>(PARAM_NOTE, URLEncoder.encode(note)));
parametersToUpdate.add(new Pair<>(PARAM_NOTE, note));
}

if (label != null) {
parametersToUpdate.add(new Pair<>(PARAM_LABEL, URLEncoder.encode(label)));
parametersToUpdate.add(new Pair<>(PARAM_LABEL, label));
}

/// perform required PUT requests
Expand Down

0 comments on commit 3153281

Please sign in to comment.