diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/net/http.rb | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +Mon Nov 5 01:02:56 2007 Minero Aoki <aamine@loveruby.net> + + * lib/net/http.rb (HTTPHeader#initialize): provide default + User-Agent to fix 500 error on some corrupted HTTP servers. + [ruby-core:13135] + Mon Nov 5 00:24:24 2007 NAKAMURA Usaku <usa@ruby-lang.org> * win32/Makefile.sub: vendor_ruby support. diff --git a/lib/net/http.rb b/lib/net/http.rb index 29377fc47..19f0983a3 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -1533,6 +1533,7 @@ module Net #:nodoc: @path = path initialize_http_header initheader self['Accept'] ||= '*/*' + self['User-Agent'] ||= 'Ruby' @body = nil @body_stream = nil end |