diff options
author | FChannel <=> | 2021-01-28 19:59:37 -0800 |
---|---|---|
committer | FChannel <=> | 2021-01-28 19:59:37 -0800 |
commit | 26db3d04944e838e6de5aeb736c59982ed226c48 (patch) | |
tree | 797b2329ecddbe34862ca49c57b6c6b7410c2791 /CacheDatabase.go | |
parent | 42e7acc965daea755a84064f68e4eebf3e3b2e11 (diff) |
delete objects local and remote
Diffstat (limited to 'CacheDatabase.go')
-rw-r--r-- | CacheDatabase.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CacheDatabase.go b/CacheDatabase.go index e6a447b..d5f9c97 100644 --- a/CacheDatabase.go +++ b/CacheDatabase.go @@ -632,6 +632,8 @@ func DeleteActorCache(db *sql.DB, actorID string) { rows, err := db.Query(query, actorID) + + CheckError(err, "error selecting actors activity from cache") defer rows.Close() |