Fix last-seen-at format

This commit is contained in:
bodqhrohro 2019-12-01 15:12:15 +02:00
parent 7030ec0f1b
commit 1568e29156

View file

@ -107,7 +107,7 @@ func userStatusToText(status client.UserStatus) (string, string) {
show = "xa" show = "xa"
} }
// TODO: timezone // TODO: timezone
textStatus = time.Unix(int64(offlineStatus.WasOnline), 0).Format("Last seen at 15:03 02/01/2006") textStatus = time.Unix(int64(offlineStatus.WasOnline), 0).Format("Last seen at 15:04 02/01/2006")
} }
return show, textStatus return show, textStatus