all repos — honk @ d71fb20fbc415ee5504c54ffc59148a1bd5d9a75

my fork of honk

stray comma
Ted Unangst tedu@tedunangst.com
Sat, 24 Aug 2019 23:12:42 -0400
commit

d71fb20fbc415ee5504c54ffc59148a1bd5d9a75

parent

cb90c3d285f215b52945c2bd0b93086c4e2660b7

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M honk.gohonk.go

@@ -1727,7 +1727,7 @@ stmtHonksByConvoy = preparetodie(db, selecthonks+"where (honks.userid = ? or (? = -1 and whofore = 2)) and convoy = ?"+limit)

stmtHonksByOntology = preparetodie(db, selecthonks+"join onts on honks.honkid = onts.honkid where onts.ontology = ? and honks.whofore = 2"+limit) stmtSaveHonk = preparetodie(db, "insert into honks (userid, what, honker, xid, rid, dt, url, audience, noise, convoy, whofore, format, precis, oonker, flags, onts) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)") - stmtSaveOnts = preparetodie(db, "insert into onts (ontology, honkid), values (?, ?)") + stmtSaveOnts = preparetodie(db, "insert into onts (ontology, honkid) values (?, ?)") stmtFileData = preparetodie(db, "select media, content from files where xid = ?") stmtFindXonk = preparetodie(db, "select honkid from honks where userid = ? and xid = ?") stmtSaveDonk = preparetodie(db, "insert into donks (honkid, fileid) values (?, ?)")