Uh oh!
There was an error while loading. Please reload this page.
Remove duplicate call to decodeURIComponent - #11744
Conversation
3168a0a to
6c76dcdCompareSigned-off-by: Bernd Stellwag <burned@zerties.org>
6c76dcd to
0f030d8CompareChristophWurst
commented
Oct 11, 2018
Origin: 8782004owncloud/core#22130 (@rullzer 👍'd hehe) |
hani2000
commented
Oct 17, 2018
Dear all, Is there a patch or a fix identified for this issue? It seems more than the clients.js file |
ChristophWurst
commented
Oct 17, 2018
@hani2000https://github.com/nextcloud/server/commits/549d53cd93807270a18495a08dac72b24aabf5bb tells me this fix is not part of the 14.0.3 release. |
hani2000
commented
Oct 17, 2018
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. |
MorrisJobke
commented
Oct 17, 2018
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
pathvariable 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 filesview with a file with a%in the name and it will show the list of files instead of just the spinning animation.