-
Notifications
You must be signed in to change notification settings - Fork 118
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: Do not set a guest name on actual users #3948
Conversation
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.
Works fine for me and solves nextcloud/server#40090 👍
Thanks!
Signed-off-by: Julius Härtl <jus@bitgrid.net>
29b7a84
to
ddc825d
Compare
@elzody Do you remember what the intention of the change in 63aece8#diff-7a3746877ab19393cc83236c399a1a05d24b6dd96ddc1bfa2985b74108a04ca2R202 was? |
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.
@juliushaertl I can't recall, I think it was confusing logic for me and I accidentally had the wrong approach there. It makes sense now with this, and if it indeed fixes the issue, looks good from my side
/backport to stable30 |
/backport to stable29 |
The backport to # Switch to the target branch and update it
git checkout stable29
git pull origin stable29
# Create the new backport branch
git checkout -b backport/3948/stable29
# Cherry pick the change from the commit sha1 of the change against the default branch
# This might cause conflicts, resolve them
git cherry-pick ddc825dc
# Push the cherry pick commit to the remote repository and open a pull request
git push origin backport/3948/stable29 Error: No changes found in backport branch Learn more about backports at https://docs.nextcloud.com/server/stable/go.php?to=developer-backports. |
/backport to stable28 |
The backport to # Switch to the target branch and update it
git checkout stable28
git pull origin stable28
# Create the new backport branch
git checkout -b backport/3948/stable28
# Cherry pick the change from the commit sha1 of the change against the default branch
# This might cause conflicts, resolve them
git cherry-pick ddc825dc
# Push the cherry pick commit to the remote repository and open a pull request
git push origin backport/3948/stable28 Error: No changes found in backport branch Learn more about backports at https://docs.nextcloud.com/server/stable/go.php?to=developer-backports. |
/backport to stable27 |
The backport to # Switch to the target branch and update it
git checkout stable27
git pull origin stable27
# Create the new backport branch
git checkout -b backport/3948/stable27
# Cherry pick the change from the commit sha1 of the change against the default branch
# This might cause conflicts, resolve them
git cherry-pick ddc825dc
# Push the cherry pick commit to the remote repository and open a pull request
git push origin backport/3948/stable27 Error: No changes found in backport branch Learn more about backports at https://docs.nextcloud.com/server/stable/go.php?to=developer-backports. |
Hi @juliushaertl , the above messages seem to indicate that this fix is not included in recent releases of If so, is there any chance you could perform that manual backport, perhaps only for 29? |
@ariep I'm not Julius, but indeed it seems I missed these when doing the releases -- I think maybe you're right that the backports were missed somehow -- will look into it |
Should fix using the wrong user for filesystem access as described in nextcloud/server#40090
Before this the node was obtained from the share owner which caused issues getting the relative path later on
Debugger screenshot for my own reference:
Checklist