Skip to content

Commit

Permalink
update glossary call to reflect the API changing
Browse files Browse the repository at this point in the history
  • Loading branch information
lunakv committed Feb 7, 2024
1 parent e0ebd96 commit 8103131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func handleGlossaryQuery(input string) string {
log.Debug("In handleGlossaryQuery", "Define matched on", split)
query := TryCoerceGlossaryQuery(strings.ToLower(split[1]))

url := glossaryEndpointURL + query
url := glossaryEndpointURL + query + "?fuzzy=true"
log.Debug("findGlossary: Attempting to fetch", "URL", url)
resp, err := http.Get(url)
if err != nil {
Expand Down

0 comments on commit 8103131

Please sign in to comment.