diff --git a/app/decorators/current_user_decorator.rb b/app/decorators/current_user_decorator.rb index 962f22b..4f8917f 100644 --- a/app/decorators/current_user_decorator.rb +++ b/app/decorators/current_user_decorator.rb @@ -1,7 +1,7 @@ class CurrentUserDecorator < UserDecorator def display_name - model.username || model.email + model.username || model.email || model.temporary_username || "Me" end end