mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Fixed error when accessing files via atmos where keys contain spaces
This commit is contained in:
parent
272bc6b2a2
commit
71aa22b981
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ module Fog
|
|||
request({
|
||||
:expects => 200,
|
||||
:method => 'GET',
|
||||
:path => "namespace/" + namespace,
|
||||
:path => "namespace/" + URI.escape(namespace),
|
||||
:query => {},
|
||||
:parse => true
|
||||
}.merge(options))
|
||||
|
|
|
@ -8,7 +8,7 @@ module Fog
|
|||
request({
|
||||
:expects => 200,
|
||||
:method => 'HEAD',
|
||||
:path => "namespace/" + namespace,
|
||||
:path => "namespace/" + URI.escape(namespace),
|
||||
:query => {},
|
||||
:parse => true
|
||||
}.merge(options))
|
||||
|
|
Loading…
Reference in a new issue