From ef9905078b1329ab1071056edd23fb72090ac1b6 Mon Sep 17 00:00:00 2001 From: Caleb Foust Date: Thu, 1 Feb 2024 06:32:35 +0800 Subject: [PATCH] fix: bug with triple input to input/find --- pkg/fuzzy/filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/fuzzy/filter.go b/pkg/fuzzy/filter.go index cb2334a1..0f359607 100644 --- a/pkg/fuzzy/filter.go +++ b/pkg/fuzzy/filter.go @@ -134,7 +134,7 @@ func unmarshalOption(input *janet.Value) (result Option, err error) { if err != nil { return } - result.Result = tuple.Value + result.Result = triple.Value preview := previewInput{} err = triple.Preview.Unmarshal(&preview)