Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix default full name in self-registration form
When the full name is not specified, the code is supposed to set it to the username. But that wasn't working because the code was checking for `null` but the full name is set to an empty string. Fix this by checking for either an empty string or `null` (casting `null` to string returns an empty string).
- Loading branch information