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:
parent
e8b740c84e
commit
b60bdd37da
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue