mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Updated RELEASE_NOTES.
This commit is contained in:
parent
54144dd517
commit
459ba627e6
@ -2,7 +2,7 @@
|
||||
|
||||
## 2.06
|
||||
|
||||
The purge is managed internally, so there is no longer a need to add a cron job for that.
|
||||
The purge is managed internally, so there is no longer a need to add a cron job for that. If you don't want any timeline data to be purged, set `timeline_purge_days` to 0.
|
||||
|
||||
## 2.05
|
||||
|
||||
|
4
data.c
4
data.c
@ -1028,8 +1028,6 @@ void purge(snac *snac)
|
||||
/* do the purge */
|
||||
{
|
||||
int tpd = xs_number_get(xs_dict_get(srv_config, "timeline_purge_days"));
|
||||
time_t mt = time(NULL) - tpd * 24 * 3600;
|
||||
char *p, *v;
|
||||
|
||||
/* purge days set to 0? disable purging */
|
||||
if (tpd == 0) {
|
||||
@ -1037,8 +1035,10 @@ void purge(snac *snac)
|
||||
return;
|
||||
}
|
||||
|
||||
time_t mt = time(NULL) - tpd * 24 * 3600;
|
||||
xs *t_spec = xs_fmt("%s/timeline/" "*.json", snac->basedir);
|
||||
xs *t_list = xs_glob(t_spec, 0, 0);
|
||||
char *p, *v;
|
||||
|
||||
p = t_list;
|
||||
while (xs_list_iter(&p, &v)) {
|
||||
|
Loading…
Reference in New Issue
Block a user