fix: encode uri for delete, restore and favorite#40644
Merged
ChristophWurst merged 1 commit intomasterfrom Sep 29, 2023
Merged
Conversation
Contributor
Author
|
Version for stable27: #40642 |
588234c to
e5fb084
Compare
Pytal
approved these changes
Sep 28, 2023
Member
|
Conflicts mildly |
To encode # and other characters properly Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
e5fb084 to
4f70324
Compare
Member
|
CI failure is unrelated to the code changes |
Member
|
UI is broken and show lots of encoded files now :) |
Member
|
Come on folks who approved, have any of you actually tested this PR ?.... |
skjnldsv
reviewed
Oct 3, 2023
| const nodeData = { | ||
| id: node.props?.fileid as number || 0, | ||
| source: generateRemoteUrl('dav' + rootPath + node.filename), | ||
| source: generateRemoteUrl(encodePath('dav' + rootPath + node.filename)), |
Member
There was a problem hiding this comment.
encodePath is no even defined here...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
To encode # and other characters properly
Similar to #39842 but different ;)
#is a valid character for our filenames but also for uris in general and therefore not encoded by default.To use
#in filenames we need to encode it.TODO
Checklist