-
-
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
fix(search): fix load more #38303
fix(search): fix load more #38303
Conversation
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
/backport to stable26 |
/backport to stable25 |
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.
Tested and works however one small remark
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.
see above
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-stable25 More info at https://docs.nextcloud.com/server/latest/developer_manual/getting_started/development_process.html#manual-backport |
/backport to stable25 |
Hi! Please, suggest quick and dirty hack how to get these changes on my personal prod site? |
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 |
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: |
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. |
The Files for 25 / 26 are different.
|
Thanks. That works fine! |
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.