summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-09-25 09:00:38 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-09-25 09:00:38 +0300
commited2c4a872dbddd2eaa13b280543ffabb0d197851 (patch)
tree0e7a21daea06163355d880151feed13bc18a34ab /src
parent69ef98b895be4be6d3471f22e5e153878495523a (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.
Diffstat (limited to 'src')
-rw-r--r--src/visited.c2
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
32const int maxAge_Visited = 2 * 3600 * 24 * 30; /* two months */ 32const int maxAge_Visited = 6 * 3600 * 24 * 30; /* six months */
33 33
34void init_VisitedUrl(iVisitedUrl *d) { 34void init_VisitedUrl(iVisitedUrl *d) {
35 initCurrent_Time(&d->when); 35 initCurrent_Time(&d->when);