diff --git a/lib/fog/vcloudng/parsers/compute/vm_customization.rb b/lib/fog/vcloudng/parsers/compute/vm_customization.rb index 66a1e84fb..9c110bfa9 100644 --- a/lib/fog/vcloudng/parsers/compute/vm_customization.rb +++ b/lib/fog/vcloudng/parsers/compute/vm_customization.rb @@ -14,8 +14,8 @@ module Fog case name when 'GuestCustomizationSection' customizations = extract_attributes(attributes) - @response[:href] = customizations['href'] - @response[:type] = customizations['type'] + @response[:href] = customizations[:href] + @response[:type] = customizations[:type] # href looks like this: # "https://devlab.mdsol.com/api/vApp/vm-2bbbf556-55dc-4974-82e6-aa6e814f0b64/guestCustomizationSection/" @response[:id] = @response[:href].split('/')[-2]