summaryrefslogtreecommitdiff
path: root/theMagicOfAutocomplete.go
diff options
context:
space:
mode:
Diffstat (limited to 'theMagicOfAutocomplete.go')
-rw-r--r--theMagicOfAutocomplete.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/theMagicOfAutocomplete.go b/theMagicOfAutocomplete.go
index 21aebed..89560c5 100644
--- a/theMagicOfAutocomplete.go
+++ b/theMagicOfAutocomplete.go
@@ -67,7 +67,8 @@ func Autocomplete(dest any) *Auto {
// set the duration since the last auto complete
// find the last entry. this is dumb way to do it
- var last *Auto
+ last := new(Auto)
+ last.Ctime = timestamppb.New(time.Now().Add(-time.Second))
for found := range all.IterAll() {
last = found
}