diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-09-25 09:00:38 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-09-25 09:00:38 +0300 |
commit | ed2c4a872dbddd2eaa13b280543ffabb0d197851 (patch) | |
tree | 0e7a21daea06163355d880151feed13bc18a34ab | |
parent | 69ef98b895be4be6d3471f22e5e153878495523a (diff) |
Visited: Remember URLs for 6 months (previously 2)
This affects link/entry unread status, and how long feed entries are kept in the cache.
-rw-r--r-- | src/visited.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/visited.c b/src/visited.c index 94cff492..e9f691c6 100644 --- a/src/visited.c +++ b/src/visited.c | |||
@@ -29,7 +29,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ | |||
29 | #include <the_Foundation/ptrarray.h> | 29 | #include <the_Foundation/ptrarray.h> |
30 | #include <the_Foundation/sortedarray.h> | 30 | #include <the_Foundation/sortedarray.h> |
31 | 31 | ||
32 | const int maxAge_Visited = 2 * 3600 * 24 * 30; /* two months */ | 32 | const int maxAge_Visited = 6 * 3600 * 24 * 30; /* six months */ |
33 | 33 | ||
34 | void init_VisitedUrl(iVisitedUrl *d) { | 34 | void init_VisitedUrl(iVisitedUrl *d) { |
35 | initCurrent_Time(&d->when); | 35 | initCurrent_Time(&d->when); |