fix test failures (#12787)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11179 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
45f870cb53
commit
58dfbde1ea
|
@ -103,10 +103,11 @@ module Redmine
|
|||
encodings = Setting.repositories_encodings.split(',').collect(&:strip)
|
||||
encodings.each do |encoding|
|
||||
if str.respond_to?(:force_encoding)
|
||||
str.force_encoding(encoding)
|
||||
begin
|
||||
return str.encode('UTF-8')
|
||||
rescue Encoding::InvalidByteSequenceError
|
||||
str.force_encoding(encoding)
|
||||
utf8 = str.encode('UTF-8')
|
||||
return utf8 if utf8.valid_encoding?
|
||||
rescue
|
||||
# do nothing here and try the next encoding
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue