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

View file

@ -18,7 +18,7 @@ func getNick(apiuser tg.APIUser) {
users[apiuser.Username] = apiuser.FirstName users[apiuser.Username] = apiuser.FirstName
if apiuser.LastName != "" { if apiuser.LastName != "" {
users[apiuser.Username] += apiuser.LastName users[apiuser.Username] += " " + apiuser.LastName
} }
err := db.Update(func(tx *bolt.Tx) error { err := db.Update(func(tx *bolt.Tx) error {