mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02:00
Bust relationship cache key (#37760)
This commit is contained in:
@@ -10,7 +10,7 @@ module RelationshipCacheable
|
||||
private
|
||||
|
||||
def remove_relationship_cache
|
||||
Rails.cache.delete(['relationship', account_id, target_account_id])
|
||||
Rails.cache.delete(['relationship', target_account_id, account_id])
|
||||
Rails.cache.delete(['relationships', account_id, target_account_id])
|
||||
Rails.cache.delete(['relationships', target_account_id, account_id])
|
||||
end
|
||||
end
|
||||
|
||||
@@ -114,6 +114,6 @@ class AccountRelationshipsPresenter
|
||||
end
|
||||
|
||||
def relationship_cache_key(account_id)
|
||||
['relationship', @current_account_id, account_id]
|
||||
['relationships', @current_account_id, account_id]
|
||||
end
|
||||
end
|
||||
|
||||
@@ -66,10 +66,10 @@ class MoveWorker
|
||||
# Clear any relationship cache, since callbacks are not called
|
||||
Rails.cache.delete_multi(follows.flat_map do |follow|
|
||||
[
|
||||
['relationship', follow.account_id, follow.target_account_id],
|
||||
['relationship', follow.target_account_id, follow.account_id],
|
||||
['relationship', follow.account_id, @target_account.id],
|
||||
['relationship', @target_account.id, follow.account_id],
|
||||
['relationships', follow.account_id, follow.target_account_id],
|
||||
['relationships', follow.target_account_id, follow.account_id],
|
||||
['relationships', follow.account_id, @target_account.id],
|
||||
['relationships', @target_account.id, follow.account_id],
|
||||
]
|
||||
end)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user