Conversation
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
|
/backport to stable26 |
|
/backport to stable25 |
szaimen
left a comment
There was a problem hiding this comment.
Tested and works however one small remark
|
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 |
|
/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.