Skip to content
Snippets Groups Projects
Verified Commit c0b920ee authored by Timm Fitschen's avatar Timm Fitschen
Browse files

FIX minor bug in MySQLRetrieveUser which would not return the user name

parent 9d51e956
No related branches found
No related tags found
1 merge request!33Draft: Fix extern 128 (change own password)
Pipeline #13290 passed
......@@ -81,6 +81,8 @@ public class MySQLRetrieveUser extends MySQLTransaction implements RetrieveUserI
while (roles_rs.next()) {
if (ret == null) {
ret = new ProtoUser();
ret.realm = principal.getRealm();
ret.name = principal.getUsername();
}
if (ret.roles == null) {
ret.roles = new HashSet<String>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment