Browse Source

Skip full text search if failed (#9654)

* Skip full text search if failed

* Move rescue block to "perform_statuses_search!"
pull/4/head
Jeong Arm 5 years ago
committed by Eugen Rochko
parent
commit
511231ce57
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      app/services/search_service.rb

+ 2
- 0
app/services/search_service.rb View File

@ -34,6 +34,8 @@ class SearchService < BaseService
.compact
statuses.reject { |status| StatusFilter.new(status, account).filtered? }
rescue Faraday::ConnectionFailed
[]
end
def perform_hashtags_search!

Loading…
Cancel
Save