diff options
-rw-r--r-- | lib/rbot/core/utils/httputil.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/rbot/core/utils/httputil.rb b/lib/rbot/core/utils/httputil.rb index 2b714527..11f3cb41 100644 --- a/lib/rbot/core/utils/httputil.rb +++ b/lib/rbot/core/utils/httputil.rb @@ -473,10 +473,14 @@ class HttpUtil headers = @headers.dup.merge(opts[:headers] || {}) headers['Range'] = opts[:range] if opts[:range] + headers['Authorization'] = opts[:auth_head] if opts[:auth_head] cached.setup_headers(headers) if cached && (req_class == Net::HTTP::Get) req = req_class.new(uri.request_uri, headers) - req.basic_auth(uri.user, uri.password) if uri.user && uri.password + if uri.user && uri.password + req.basic_auth(uri.user, uri.password) + opts[:auth_head] = req['Authorization'] + end req.body = opts[:body] if req_class == Net::HTTP::Post debug "prepared request: #{req.to_hash.inspect}" |