stats: Add space between first and last name
This commit is contained in:
parent
e800a46c5f
commit
1b30ebffc5
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ func getNick(apiuser tg.APIUser) {
|
|||
|
||||
users[apiuser.Username] = apiuser.FirstName
|
||||
if apiuser.LastName != "" {
|
||||
users[apiuser.Username] += apiuser.LastName
|
||||
users[apiuser.Username] += " " + apiuser.LastName
|
||||
}
|
||||
|
||||
err := db.Update(func(tx *bolt.Tx) error {
|
||||
|
|
Reference in a new issue