aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2021-12-08 17:21:36 +0000
committerGravatar Chris Lovering <[email protected]>2021-12-08 17:28:38 +0000
commita55ed25126149d0dd092287c6e41415419f4927c (patch)
treeee265160859cc2fb95026307e175cebbbc9c156b
parentMerge pull request #1539 from Numerlor/site-tags (diff)
Reduce threshold before fuzzy matching to 2
Commands such as !ot, !if, !xy are commonly used as shortcuts to their respective tags. We recently upped the threshold before fuzzy matching to 3 characters, which broke these shortcuts. This commit reduces that threshold down to 2, so users who are used to those commands can still use them.
-rw-r--r--bot/exts/info/tags.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py
index 7c8d378a9..e5930a433 100644
--- a/bot/exts/info/tags.py
+++ b/bot/exts/info/tags.py
@@ -168,11 +168,11 @@ class Tags(Cog):
"""Get tags with identifiers similar to `tag_identifier`."""
suggestions = []
- if tag_identifier.group is not None and len(tag_identifier.group) >= 3:
+ if tag_identifier.group is not None and len(tag_identifier.group) >= 2:
# Try fuzzy matching with only a name first
suggestions += self._get_suggestions(TagIdentifier(None, tag_identifier.group))
- if len(tag_identifier.name) >= 3:
+ if len(tag_identifier.name) >= 2:
suggestions += self._get_suggestions(tag_identifier)
return suggestions