From: franz Date: Tue, 20 Oct 2009 07:07:27 +0000 (+0200) Subject: httputil.rb: fix http.no_expire_cache being IntegerValue X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=96218423c1200c9281b8b4261a924565c4eafd2a;p=user%2Fhenk%2Fcode%2Fruby%2Frbot.git httputil.rb: fix http.no_expire_cache being IntegerValue It should be BooleanValue, otherwise false would get converted to 0 which would evaluate to true, meaning cache would never expire. --- diff --git a/lib/rbot/core/utils/httputil.rb b/lib/rbot/core/utils/httputil.rb index 76e3f298..d1eb77ea 100644 --- a/lib/rbot/core/utils/httputil.rb +++ b/lib/rbot/core/utils/httputil.rb @@ -190,7 +190,7 @@ class HttpUtil Bot::Config.register Bot::Config::IntegerValue.new('http.max_cache_time', :default => 60*24, :desc => "After how many minutes since first use a cached document is considered to be expired") - Bot::Config.register Bot::Config::IntegerValue.new('http.no_expire_cache', + Bot::Config.register Bot::Config::BooleanValue.new('http.no_expire_cache', :default => false, :desc => "Set this to true if you want the bot to never expire the cached pages") Bot::Config.register Bot::Config::IntegerValue.new('http.info_bytes',