From bfe651a125c61615600c318ce9c824553b58673a Mon Sep 17 00:00:00 2001 From: jude Date: Tue, 1 Aug 2023 20:13:05 +0100 Subject: [PATCH] Change autocomplete to use a past date in the past --- src/commands/autocomplete.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/autocomplete.rs b/src/commands/autocomplete.rs index 255f345..66cd112 100644 --- a/src/commands/autocomplete.rs +++ b/src/commands/autocomplete.rs @@ -55,7 +55,7 @@ pub async fn time_hint_autocomplete( if diff < 0 { vec![AutocompleteChoice { name: "Time is in the past".to_string(), - value: "now".to_string(), + value: "1 year ago".to_string(), }] } else { if diff > 86400 {