From 96218423c1200c9281b8b4261a924565c4eafd2a Mon Sep 17 00:00:00 2001 From: franz Date: Tue, 20 Oct 2009 09:07:27 +0200 Subject: [PATCH] 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. --- lib/rbot/core/utils/httputil.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', -- 2.39.2