Uh oh!
There was an error while loading. Please reload this page.
fix(search): fix load more - #38303
Conversation
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
skjnldsv
commented
May 16, 2023
/backport to stable26 |
skjnldsv
commented
May 16, 2023
/backport to stable25 |
szaimen
left a comment
There was a problem hiding this comment.
Tested and works however one small remark
Uh oh!
There was an error while loading. Please reload this page.
The backport to stable25 failed. Please do this backport manually. # Switch to the target branch and update it
git checkout stable25
git pull origin/stable25
# Create the new backport branch
git checkout -b fix/foo-stable25
# Cherry pick the change from the commit sha1 of the change against the default branch# This might cause conflicts. Resolve them.
git cherry-pick abc123
# Push the cherry pick commit to the remote repository and open a pull request
git push origin fix/foo-stable25More info at https://docs.nextcloud.com/server/latest/developer_manual/getting_started/development_process.html#manual-backport |
szaimen
commented
May 16, 2023
/backport to stable25 |
Hi! Please, suggest quick and dirty hack how to get these changes on my personal prod site? |
skjnldsv
commented
May 17, 2023
You can download the patch and manually try to apply it from either the stable25 or stable26 branch https://coderwall.com/p/6aw72a/creating-patch-from-github-pull-request |
t-markmann
commented
May 22, 2023
Unfortunately this only seems to work, if your (production) NC instance is a git repo. Solution might be "git init" and so on. But then your NC dir ist not clean and upgradeable anymore, I think. A more practicable solution: download the 3 (non-src) files and replace the old ones. |
Be careful by applying it: By replacing these 3 files I am obtaining empty home folder with this error in the logs: |
t-markmann
commented
May 23, 2023
Hm, I'm running a NC 25.0.5.1 |
With 26.0.1 it goes not so well. I haven't to revert back. |
t-markmann
commented
May 23, 2023
The Files for 25 / 26 are different. |
oleua
commented
May 23, 2023
Thanks. That works fine! |
skjnldsv
commented
May 23, 2023
Yeah, this is not for production. |
Fix#35558
Regression from #34100
When search for files, clicking the "load more" button, changes the URL and the legacy files list triggers a navigation change.
I fixed the url change and added a sanity check in the legacy url change detection to potentially mitigate other unseen issues.