mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Parser does not concatenates all the strings when parsing
When parsing a Route53 DNS record containing a " such as "v=DKIM1; k=rsa; p=MIGfMA0GCSqG....x59/8qdGvAo+S5xwIDAQAB", the parser just retains the last double quote.
This commit is contained in:
parent
a91a31c7c4
commit
1364f1a0d8
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ module Fog
|
|||
end
|
||||
|
||||
def characters(string)
|
||||
@value = string
|
||||
@value ||= ''
|
||||
@value << string
|
||||
end
|
||||
|
||||
def start_element(name, attrs = [])
|
||||
|
|
Loading…
Add table
Reference in a new issue