summaryrefslogtreecommitdiff
path: root/app/serializers/concerns/user_status_tooltip.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/concerns/user_status_tooltip.rb')
-rw-r--r--app/serializers/concerns/user_status_tooltip.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/serializers/concerns/user_status_tooltip.rb b/app/serializers/concerns/user_status_tooltip.rb
index aa6e67e3351..633b117d392 100644
--- a/app/serializers/concerns/user_status_tooltip.rb
+++ b/app/serializers/concerns/user_status_tooltip.rb
@@ -11,7 +11,7 @@ module UserStatusTooltip
expose :user_status_if_loaded, as: :status_tooltip_html
def user_status_if_loaded
- return nil unless object.association(:status).loaded?
+ return unless object.association(:status).loaded?
user_status(object)
end