oops, need one more param for queries now

This commit is contained in:
Ted Unangst 2019-04-28 20:51:12 -04:00
parent 3fe562479a
commit ab8d03ffef
1 changed files with 2 additions and 2 deletions

View File

@ -661,12 +661,12 @@ func gethonksforme(userid int64) []*Honk {
return getsomehonks(rows, err) return getsomehonks(rows, err)
} }
func gethonksbyhonker(userid int64, honker string) []*Honk { func gethonksbyhonker(userid int64, honker string) []*Honk {
rows, err := stmtHonksByHonker.Query(userid, honker) rows, err := stmtHonksByHonker.Query(userid, honker, userid)
return getsomehonks(rows, err) return getsomehonks(rows, err)
} }
func gethonksbycombo(userid int64, combo string) []*Honk { func gethonksbycombo(userid int64, combo string) []*Honk {
combo = "% " + combo + " %" combo = "% " + combo + " %"
rows, err := stmtHonksByCombo.Query(userid, combo) rows, err := stmtHonksByCombo.Query(userid, combo, userid)
return getsomehonks(rows, err) return getsomehonks(rows, err)
} }
func gethonksbyconvoy(userid int64, convoy string) []*Honk { func gethonksbyconvoy(userid int64, convoy string) []*Honk {