mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
updated base request parser to not eagerly strip return data
This commit is contained in:
parent
8790513231
commit
f195be7d75
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ module Fog
|
||||||
end
|
end
|
||||||
|
|
||||||
def characters(string)
|
def characters(string)
|
||||||
@value ||= ''
|
@value ||= string
|
||||||
@value << string.strip
|
@value || ''
|
||||||
end
|
end
|
||||||
|
|
||||||
def start_element(name, attrs = [])
|
def start_element(name, attrs = [])
|
||||||
|
|
Loading…
Reference in a new issue