diff options
author | FChannel <=> | 2021-01-28 17:02:10 -0800 |
---|---|---|
committer | FChannel <=> | 2021-01-28 17:02:10 -0800 |
commit | e06b4e233382155808366538ed9075c3eeb351d2 (patch) | |
tree | d1214ad14ff428ff598680547bd33605ee4e4bb0 /CacheDatabase.go | |
parent | 51521e934b6d80f3b7267410e592fbef3580012f (diff) |
if OP, send to OP followers
Diffstat (limited to 'CacheDatabase.go')
-rw-r--r-- | CacheDatabase.go | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/CacheDatabase.go b/CacheDatabase.go index cbb7cd1..e6a447b 100644 --- a/CacheDatabase.go +++ b/CacheDatabase.go @@ -628,22 +628,20 @@ func GetObjectImgsTotalCache(db *sql.DB, actor Actor) int{ } func DeleteActorCache(db *sql.DB, actorID string) { - query := `select id from cacheactivitystream where id in (select id from cacheactivitystream where actor=$1)` + query := `select id from cacheactivitystream where id in (select id from cacheactivitystream where actor=$1)` - rows, err := db.Query(query, actorID) + rows, err := db.Query(query, actorID) + CheckError(err, "error selecting actors activity from cache") + defer rows.Close() - CheckError(err, "error selecting actors activity from cache") - - defer rows.Close() - - for rows.Next() { - var id string - rows.Scan(&id) + for rows.Next() { + var id string + rows.Scan(&id) - DeleteObjectFromCache(db, id) - } + DeleteObjectFromCache(db, id) + } } func WriteActorToCache(db *sql.DB, actorID string) { |