stats: Add space between first and last name

This commit is contained in:
Hamcha 2016-02-11 13:03:44 +00:00
parent e800a46c5f
commit 1b30ebffc5
1 changed files with 1 additions and 1 deletions

View File

@ -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 {