Always return a boolean value from moderation_view?

This commit is contained in:
Andreas Nedbal 2022-08-20 17:08:07 +02:00 committed by Andreas Nedbal
parent f5f7b0d22b
commit b00a12b322

View file

@ -18,7 +18,7 @@ module UserHelper
end end
def moderation_view? def moderation_view?
current_user&.mod? && session[:moderation_view] == true !!(current_user&.mod? && session[:moderation_view] == true)
end end
private private