all repos — honk @ 8671936511ba29c3128ebb9c828bb77cceb23619

my fork of honk

u
Anirudh Oppiliappan x@icyphox.sh
Tue, 26 Sep 2023 23:05:27 +0300
commit

8671936511ba29c3128ebb9c828bb77cceb23619

parent

02af8a8a2e1f8319ba5065f5a6f1db485071c7f5

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

jump to
M database.godatabase.go

@@ -1286,7 +1286,7 @@ stmtGetUserCount = preparetodie(db, "select count(*) from users where userid > 0")

stmtGetActiveUserCount = preparetodie(db, "select count(distinct honker) from honks where whofore = 2 and dt > ?") stmtGetLocalHonkCount = preparetodie(db, "select count(*) from honks where whofore = 2") - stmtSaveMastoApp = preparetodie(db, "insert into masto (clientname, redirecturis, scopes, clientid, clientsecret, vapidkey, authtoken) values (?, ?, ?, ?, ?, ?)") + stmtSaveMastoApp = preparetodie(db, "insert into masto (clientname, redirecturis, scopes, clientid, clientsecret, vapidkey, authtoken) values (?, ?, ?, ?, ?, ?, ?)") stmtSaveMastoAppToken = preparetodie(db, "update masto set authtoken = ?") stmtCheckClientId = preparetodie(db, "select clientid from masto where clientid = ?") }