mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 17:52:02 -04:00
Use proper casing of username in avatar filesystem setup
* before you could request an avatar for User instead of user which sets up the filesystem for that user twice causing the sharing codes collision detection to detect a lot of collisions Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
04d0daed12
commit
e4ece33e80
1 changed files with 2 additions and 0 deletions
|
|
@ -84,6 +84,8 @@ class AvatarManager implements IAvatarManager {
|
|||
if (is_null($user)) {
|
||||
throw new \Exception('user does not exist');
|
||||
}
|
||||
// sanitize userID - fixes casing issue (needed for the filesystem stuff that is done below)
|
||||
$userId = $user->getUID();
|
||||
|
||||
/*
|
||||
* Fix for #22119
|
||||
|
|
|
|||
Loading…
Reference in a new issue