allow subs to resub, from xwatt

This commit is contained in:
Ted Unangst 2023-01-24 19:10:17 -05:00
parent f4dfdcea25
commit 78a58539ea
1 changed files with 1 additions and 1 deletions

View File

@ -1941,7 +1941,7 @@ func followyou2(user *WhatAbout, j junk.Junk) {
ilog.Printf("updating honker accept: %s", who)
db := opendatabase()
row := db.QueryRow("select name, folxid from honkers where userid = ? and xid = ? and flavor in ('presub')",
row := db.QueryRow("select name, folxid from honkers where userid = ? and xid = ? and flavor in ('presub', 'sub')",
user.ID, who)
var name, folxid string
err := row.Scan(&name, &folxid)