0
0
Fork 0

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

This commit is contained in:
Eugen Rochko 2017-04-03 22:54:46 +02:00
parent 98a93aa07e
commit 8232f76c48
2 changed files with 3 additions and 0 deletions

View file

@ -4,4 +4,5 @@ module Mastodon
class Error < StandardError; end
class NotPermittedError < Error; end
class ValidationError < Error; end
class RaceConditionError < Error; end
end