This commit is contained in:
Your Name 2023-10-09 11:36:43 -04:00
parent d99a72ff82
commit 8c1056ddc0
1 changed files with 2 additions and 2 deletions

View File

@ -128,8 +128,8 @@ func Get(username string) (*UserData, bool) {
log.Printf("scsusers.Get: %s", err.Error())
return nil, false
}
return u, u.LoadMeta()
ok := u.LoadMeta()
return u, ok
}
func GetUserid(username string) int64 {