From 1c0b2479045015b96907eaa7567bfd14e4593424 Mon Sep 17 00:00:00 2001 From: pluralcafe-docker Date: Tue, 11 Dec 2018 19:07:38 +0000 Subject: Revert "Add profile directory (#9427)" This reverts commit ee5213093a084c2eb5fa97fb4bdea6019dda5cf5. --- app/services/update_account_service.rb | 5 ----- 1 file changed, 5 deletions(-) (limited to 'app/services') diff --git a/app/services/update_account_service.rb b/app/services/update_account_service.rb index 36665177d..ec69d944a 100644 --- a/app/services/update_account_service.rb +++ b/app/services/update_account_service.rb @@ -10,7 +10,6 @@ class UpdateAccountService < BaseService authorize_all_follow_requests(account) if was_locked && !account.locked check_links(account) - process_hashtags(account) end end @@ -25,8 +24,4 @@ class UpdateAccountService < BaseService def check_links(account) VerifyAccountLinksWorker.perform_async(account.id) end - - def process_hashtags(account) - account.tags_as_strings = Extractor.extract_hashtags(account.note) - end end -- cgit