Change featured hashtag deletion to be done synchronously (#19590)

lolsob-rspec
Claire 2022-10-31 16:31:44 +01:00 committed by GitHub
parent 0b91816814
commit 78f77cb5d4
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class Settings::FeaturedTagsController < Settings::BaseController
end
def destroy
RemoveFeaturedTagWorker.perform_async(current_account.id, @featured_tag.id)
RemoveFeaturedTagService.new.call(current_account, @featured_tag)
redirect_to settings_featured_tags_path
end