Skip to content
Snippets Groups Projects
Commit 8232f76c authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Add check for visibility.nil? even though it can't ever be, to check for race conditions

parent 98a93aa0
No related branches found
No related tags found
No related merge requests found
......@@ -4,4 +4,5 @@ module Mastodon
class Error < StandardError; end
class NotPermittedError < Error; end
class ValidationError < Error; end
class RaceConditionError < Error; end
end
......@@ -4,6 +4,8 @@ class FanOutOnWriteService < BaseService
# Push a status into home and mentions feeds
# @param [Status] status
def call(status)
raise Mastodon::RaceConditionError if status.visibility.nil?
deliver_to_self(status) if status.account.local?
if status.direct_visibility?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment