mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fixing redundant escape in regex
This commit is contained in:
parent
ad8dc5ab89
commit
3b584aee95
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ module ActionMailer
|
||||||
[ nil, {} ]
|
[ nil, {} ]
|
||||||
else
|
else
|
||||||
ctype, *attrs = @content_type.split(/;\s*/)
|
ctype, *attrs = @content_type.split(/;\s*/)
|
||||||
attrs = Hash[attrs.map { |attr| attr.split(/\=/, 2) }]
|
attrs = Hash[attrs.map { |attr| attr.split(/=/, 2) }]
|
||||||
[ctype, {"charset" => @charset}.merge!(attrs)]
|
[ctype, {"charset" => @charset}.merge!(attrs)]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue