diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-19 21:01:55 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-19 21:01:55 +0200 |
| commit | b1faeca09f1cd98a64e5c7c17db990b19803750a (patch) | |
| tree | 7a15723d6390d34539efac5c7e978a1e62915e25 /internal/state/state.go | |
| parent | d24a40f2f66999f36ab4d0e26cfe88c38d12e64e (diff) | |
chore(release): bump version to 0.15.7v0.15.7
Increase full sync recent-days window from 7 to 17 days.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/state/state.go')
| -rw-r--r-- | internal/state/state.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/state/state.go b/internal/state/state.go index 4d5f197..4cae156 100644 --- a/internal/state/state.go +++ b/internal/state/state.go @@ -73,7 +73,7 @@ func (s *State) HasRunWithinWeek() bool { if s.LastBatchRun.IsZero() { return false } - return time.Since(s.LastBatchRun) < 7*24*time.Hour + return time.Since(s.LastBatchRun) < 17*24*time.Hour } // UpdateBatchRunTime updates the last batch run timestamp to now |
