u
Anirudh Oppiliappan x@icyphox.sh
Tue, 26 Sep 2023 23:05:27 +0300
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
database.go
→
database.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 = ?") }