diff options
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() |