-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove duplicate call to decodeURIComponent #11744
Remove duplicate call to decodeURIComponent #11744
Conversation
3168a0a
to
6c76dcd
Compare
Signed-off-by: Bernd Stellwag <burned@zerties.org>
6c76dcd
to
0f030d8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Makes sense
Origin: 8782004 owncloud/core#22130 (@rullzer 👍'd hehe) |
Dear all, Is there a patch or a fix identified for this issue? It seems more than the clients.js file |
@hani2000 https://github.com/nextcloud/server/commits/549d53cd93807270a18495a08dac72b24aabf5bb tells me this fix is not part of the 14.0.3 release. |
Actually, I tried it on an Opera versus Chrome, it seems the above fix works and it is only my browser cache I know it is not part of 14.03, but since 14.03 is what is recommended to be installed so many people have this bug recking their web interface access. So I suggest releasing a quick fix. |
This one was introduced in #11151. The question here is if it really is that urgent to be fixed. Up until now 3 people reported this issue. I would not rush out a new maintenance release as of now. There is an easy fix that can be applied, if this is a problem. Up until then the next release is due in a few weeks (2018-11-22) and we should aim for that as of now. |
In this code path the
path
variable got decoded twice which resulted in the bug described in #11695 because the second call seems to have caused anURIError
.I removed the second call to
decodeURIComponent()
which seems to have fixed this bug. I can now open theall files
view with a file with a%
in the name and it will show the list of files instead of just the spinning animation.