提交 0438e92a 编写于 作者: D Damien Mathieu 提交者: Andrew White

simplify to only one condition

Signed-off-by: NAndrew White <andyw@pixeltrix.co.uk>
上级 0ac0d7a0
......@@ -5,11 +5,7 @@ module I18n
class ExceptionHandler
include Module.new {
def call(exception, locale, key, options)
if exception.is_a?(MissingTranslation)
options[:rescue_format] == :html ? super.html_safe : super
else
super
end
exception.is_a?(MissingTranslation) && options[:rescue_format] == :html ? super.html_safe : super
end
}
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册