X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/05e212027339733cf39aa9b7536c3f5f69ba0962..d82f9d12ce55a0287361ed4f93cd97e896778a35:/lib/utf8.rb?ds=sidebyside 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 -