From ba9d745efaf2b7f444421ca950a257bd277a4772 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Thu, 2 Mar 2023 23:34:54 -0500 Subject: [PATCH] need to query for the sub here --- honk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/honk.go b/honk.go index d8cce9b..f14c646 100644 --- a/honk.go +++ b/honk.go @@ -401,7 +401,7 @@ func main() { fmt.Printf("user not found") return } - row := db.QueryRow("select honkerid from honkers where xid = ? and userid = ?", args[2], user.ID) + row := db.QueryRow("select honkerid from honkers where xid = ? and userid = ? and flavor in ('sub')", args[2], user.ID) var honkerid int64 err = row.Scan(&honkerid) if err != nil {