about summary refs log tree commit diff stats
path: root/sfeed_html.sh
diff options
context:
space:
mode:
authorCase Duckworth2022-07-18 09:43:46 -0500
committerCase Duckworth2022-07-18 09:43:46 -0500
commitfff10177243c81458f04d9de0bc9c6660e92af22 (patch)
tree8d776a23c720e6ee268c77bb7f27ddaee7653c3a /sfeed_html.sh
parentChange fresh_days to 1 (diff)
downloadsfeed-fff10177243c81458f04d9de0bc9c6660e92af22.tar.gz
sfeed-fff10177243c81458f04d9de0bc9c6660e92af22.zip
Fix number of days
Diffstat (limited to 'sfeed_html.sh')
-rwxr-xr-xsfeed_html.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_html.sh b/sfeed_html.sh index cfd48d3..d9f1b43 100755 --- a/sfeed_html.sh +++ b/sfeed_html.sh
@@ -107,7 +107,7 @@ html_feed() { # html_feed FEED(file) => HTML
107 enclosure=$8; 107 enclosure=$8;
108 category=$9; 108 category=$9;
109 109
110 if (limit && (timestamp < (NOW - (FRESH_SECS * 3)))) next; 110 if (limit && (timestamp < (NOW - (FRESH_SECS * 21)))) next;
111 show_in_sidebar = 1; 111 show_in_sidebar = 1;
112 #print timestamp, title, link > "/dev/stderr"; 112 #print timestamp, title, link > "/dev/stderr";
113 113