1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

fix another edge case for reload bug

This commit is contained in:
geemus 2010-11-18 15:07:51 -08:00
parent e8b740c84e
commit b60bdd37da

View file

@ -142,7 +142,7 @@ module Fog
attributes[aliased_key] = value
send("#{aliased_key}=", value)
elsif (public_methods | private_methods).detect {|method| ["#{key}=", :"#{key}="].include?(method)}
attributes[key] = value
attributes[key.to_sym] = value
send("#{key}=", value)
else
attributes[key] = value