Skip to content

Commit

Permalink
fixup: remove extraneous html escaping.
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmix committed Feb 13, 2024
1 parent 72b9fea commit 1e5bbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def searchOTE(phoneNo)
fullName = nil
end

Transliterator.gr_to_lat(CGI.escapeHTML(fullName)).gsub(%r{</?.*?>}, '').gsub(/\n/, ' - ') unless fullName.nil?
Transliterator.gr_to_lat(CGI.escapeHTML(fullName)).gsub(/\n/, ' - ') unless fullName.nil?
end

def searchAll(phoneNumber)
Expand Down

0 comments on commit 1e5bbf5

Please sign in to comment.