Fix incorrect backfilling

This would have the effect that item TTL is continually reset as long as an item is returned by fetch
This commit is contained in:
Tim Van Baak 2025-03-02 20:56:44 -08:00
parent 37ef52259f
commit be638e8e4a

View File

@ -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