From be638e8e4a073d16d21257ac915579e466265641 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Sun, 2 Mar 2025 20:56:44 -0800 Subject: [PATCH] Fix incorrect backfilling This would have the effect that item TTL is continually reset as long as an item is returned by fetch --- core/items.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/items.go b/core/items.go index 7a0a1f5..c3d1bf0 100644 --- a/core/items.go +++ b/core/items.go @@ -58,7 +58,7 @@ func BackfillItem(new *Item, old *Item) { new.Title = old.Title } if new.Ttl == 0 { - new.Tts = old.Tts + new.Ttl = old.Ttl } if new.Ttd == 0 { new.Ttd = old.Ttd