summaryrefslogtreecommitdiff
path: root/app/controllers/profiles/avatars_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/profiles/avatars_controller.rb')
-rw-r--r--app/controllers/profiles/avatars_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/profiles/avatars_controller.rb b/app/controllers/profiles/avatars_controller.rb
index d9e4b9a149d..55a2904ce83 100644
--- a/app/controllers/profiles/avatars_controller.rb
+++ b/app/controllers/profiles/avatars_controller.rb
@@ -6,7 +6,7 @@ class Profiles::AvatarsController < Profiles::ApplicationController
def destroy
@user = current_user
- Users::UpdateService.new(current_user, user: @user).execute { |user| user.remove_avatar! }
+ Users::UpdateService.new(current_user, user: @user).execute(&:remove_avatar!)
redirect_to profile_path, status: :found
end