diff options
author | FChannel <> | 2021-07-13 21:32:22 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-13 21:32:22 -0700 |
commit | 4abf08a7d49abb381bb4a5771af73a8ca34851e1 (patch) | |
tree | d412ebc0105fae4936736d5d9738fd961901222d | |
parent | 05bfa634cf8c42123c8c0a19e65aff7320dadf41 (diff) |
check post blacklist for caching other instances posts
-rw-r--r-- | cacheDatabase.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cacheDatabase.go b/cacheDatabase.go index deaed2e..2fe0a38 100644 --- a/cacheDatabase.go +++ b/cacheDatabase.go @@ -37,6 +37,11 @@ func WriteObjectToCache(db *sql.DB, obj ObjectBase) ObjectBase { } func WriteActorObjectToCache(db *sql.DB, obj ObjectBase) ObjectBase { + + if(IsPostBlacklist(db, obj.Content)){ + return obj + } + if len(obj.Attachment) > 0 { if IsIDLocal(db, obj.Id) { |