diff options
author | ThibG <thib@sitedethib.com> | 2018-08-18 19:42:13 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-08-18 19:42:13 +0200 |
commit | abc5548cca42dd87926c7c3d4b42b59a7e306eb8 (patch) | |
tree | feb9ae185fd638cb5228d277b03333c7d0b02492 /app | |
parent | 7a0f781aa9aad505dbde6a2bf3aa5048638c2de0 (diff) |
Do not process outgoing mentions to suspended accounts (#8272)
Diffstat (limited to 'app')
-rw-r--r-- | app/services/process_mentions_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb index 2ed6698cf..b4641c4b4 100644 --- a/app/services/process_mentions_service.rb +++ b/app/services/process_mentions_service.rb @@ -25,7 +25,7 @@ class ProcessMentionsService < BaseService end end - next match if mention_undeliverable?(mentioned_account) + next match if mention_undeliverable?(mentioned_account) || mentioned_account&.suspended mentions << mentioned_account.mentions.where(status: status).first_or_create(status: status) |