summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-01 20:47:27 +0200
committerPaul Buetow <paul@buetow.org>2025-03-01 20:47:27 +0200
commit9fdc653e01b36dd1d1c786cc38aff53f324f9c2f (patch)
treef4ee2f87447e6954c0166b02445cc6ef30e5c7b1
parent6b03a215107e2b4c8dc92b637630aa74e53769c2 (diff)
use 12 not 18
-rw-r--r--internal/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/main.go b/internal/main.go
index d047bb5..f4b25dd 100644
--- a/internal/main.go
+++ b/internal/main.go
@@ -27,7 +27,7 @@ func Main(composeModeDefault bool) {
minQueued := flag.Int("minQueued", 4, "Minimum of queued items until printing a warn message!")
maxDaysQueued := flag.Int("maxDaysQueued", 365, "Maximum days worth of queued posts until target++ and pauseDays--")
pauseDays := flag.Int("pauseDays", 3, "How many days until next post can be posted?")
- runIntervalHours := flag.Int("runInterval", 18, "How many hours to wait for the next run.")
+ runIntervalHours := flag.Int("runInterval", 12, "How many hours to wait for the next run.")
lookback := flag.Int("lookback", 30, "How many days look back in time for posting history")
geminiSummaryFor := flag.String("geminiSummaryFor", "", "Generate a summary in Gemini Gemtext format, format is coma separated string of months, e.g. 202410,202411")
geminiCapsules := flag.String("geminiCapsules", "foo.zone", "Comma sepaeated list Gemini capsules. Used by geminiEnable to detect Gemtext links")