This commit is contained in:
Your Name 2020-06-04 16:14:56 -04:00
parent 0dfcae78a3
commit 34dbd46732
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ func SaveUser(username string, d UserData) bool {
func Bump(username string, ip string) {
log.Printf("bump: username = %s, ip = %s", username, ip)
q := fmt.Sprintf("update %s_auth set lastseen=CURRENT_TIMESTAMP, set lastseenip=$2 where username ILIKE $1", c.TablePrefix)
q := fmt.Sprintf("update %s_auth set lastseen=CURRENT_TIMESTAMP, lastseenip=$2 where username ILIKE $1", c.TablePrefix)
_, err := c.db.Exec(q, username, ip)
if err != nil {
log.Printf("scsusers.Bump: Error on user bump: %s : %s\n", username, err.Error())