-
-
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
Problems with "digital" usernames #11197
Comments
@danielkesselberg, |
An update |
Could you close this issue then? |
Yes, I will. |
Expected behaviour
A user with digital username should be added
Actual behaviour
On submit you will get error (bad request) and all users became inaccessible from USERS menu item ("no users in here")
As a consequence, on sharing any file or folder you will see two instances of the same user with "digital" username - with email address and without it.
Users with regular usernames have the only instance to select from dropdown list upon object sharing.
Server configuration
Operating system:
Linux Debian Jessie
Web server:
Nginx+PHP-FPM and Apache+CGI
Database:
MySQL
PHP version:
7.0.25 and 7.1.20
Nextcloud version: (see Nextcloud admin page)
14.0
Updated from an older Nextcloud/ownCloud or fresh install:
Updated from 13.6
The problem with users disappearing can be solved by removing hinting from getUserData method signature in abstract class /apps/provisioning_api/lib/Controller/AUserData.php:
81 protected function getUserData(string $userId): array {
change to
81 protected function getUserData($userId): array {
The problem with duplicating of the same user with "digital" username when sharing objects is to be solved as yet.
The text was updated successfully, but these errors were encountered: