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

Merge pull request #3573 from TerryHowe/imagelist

Do not double encode image query
This commit is contained in:
Wesley Beary 2015-05-27 16:19:30 -05:00
commit b2c6e0df30

View file

@ -5,7 +5,7 @@ module Fog
def list_public_images_detailed(attribute=nil, query=nil)
path = 'images/detail'
if attribute
query = { attribute => URI::encode(query) }
query = { attribute => query }
else
query = {}
end