X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4826032d183932312d635193c9d3acef6107f280..11e81c5398bb43d35c1b12421f7a6be2ca5b7047:/lib/utf8.rb diff --git a/lib/utf8.rb b/lib/utf8.rb index 5f0d219ba..613e3005e 100644 --- a/lib/utf8.rb +++ b/lib/utf8.rb @@ -4,11 +4,7 @@ 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 -end + str.valid_encoding? + end +end