diff options
author | FChannel <> | 2021-06-28 11:08:15 -0700 |
---|---|---|
committer | FChannel <> | 2021-06-28 11:08:15 -0700 |
commit | 94c92948ae7ae669b6b6466ef4b7f00cc430f7ef (patch) | |
tree | d832efcc1590d0d7b40ef639712324a0103fb070 /cacheDatabase.go | |
parent | 34fa3d38b97ff08130e8709c4820915dfd684b19 (diff) |
added proxy wrapper with tor support
Diffstat (limited to 'cacheDatabase.go')
-rw-r--r-- | cacheDatabase.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cacheDatabase.go b/cacheDatabase.go index 5acead7..22a4a79 100644 --- a/cacheDatabase.go +++ b/cacheDatabase.go @@ -258,7 +258,7 @@ func WriteObjectReplyCache(db *sql.DB, obj ObjectBase) { } func WriteActorToCache(db *sql.DB, actorID string) { - actor := GetActor(actorID) + actor := FingerActor(actorID) collection := GetActorCollection(actor.Outbox) for _, e := range collection.OrderedItems { |