From 7fd67210d0fc2dc203e9787758b9cf65571e247e Mon Sep 17 00:00:00 2001 From: Azareal Date: Wed, 19 Feb 2020 15:00:55 +1000 Subject: [PATCH] reduce poll ip cutoff to 90 days --- common/site.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/site.go b/common/site.go index 4106e31e..bbd3d9c1 100644 --- a/common/site.go +++ b/common/site.go @@ -250,7 +250,7 @@ func ProcessConfig() (err error) { Config.LastIPCutoff = 12 } if Config.PollIPCutoff == 0 { - Config.PollIPCutoff = 180 // Default cutoff + Config.PollIPCutoff = 90 // Default cutoff } if Config.NoEmbed { DefaultParseSettings.NoEmbed = true