X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4826032d183932312d635193c9d3acef6107f280..c7391595d82f5255d400816eb0fe80b1c213d2e3:/lib/utf8.rb diff --git a/lib/utf8.rb b/lib/utf8.rb index 5f0d219ba..7865d6203 100644 --- a/lib/utf8.rb +++ b/lib/utf8.rb @@ -4,11 +4,6 @@ module UTF8 # using the iconv library, which is in the standard library. def self.valid?(str) return true if str.nil? - Iconv.conv("UTF-8", "UTF-8", str) - return true - - rescue - return false - end + str.valid_encoding? + end end -