Skip to content

Commit

Permalink
[bug] Fix bug with anonymous; for 74b77d1 (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
konovalovsergey authored Mar 11, 2021
1 parent 7d17965 commit aef6f35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DocService/sources/DocsCoServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1884,7 +1884,7 @@ exports.install = function(server, callbackFunction) {
if (null != user.lastname) {
dataUser.lastname = user.lastname;
}
if (null != user.name) {
if (user.name) {
dataUser.username = user.name;
}
}
Expand Down

0 comments on commit aef6f35

Please sign in to comment.