Fix not being able to invoke phrase search using unicode quotation marks (#26687)

th-downstream
Eugen Rochko 1 year ago committed by GitHub
parent a189771256
commit 340e86a137

@ -1,8 +1,10 @@
# frozen_string_literal: true
class SearchService < BaseService
QUOTE_EQUIVALENT_CHARACTERS = /[“”„«»「」『』《》]/
def call(query, account, limit, options = {})
@query = query&.strip
@query = query&.strip&.gsub(QUOTE_EQUIVALENT_CHARACTERS, '"')
@account = account
@options = options
@limit = limit.to_i

Loading…
Cancel
Save