You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like whether or not the input was parsed as a subject will determine if this bug manifests or not, but maybe we want to fix it elsewhere, like by removing leading slashes?
The text was updated successfully, but these errors were encountered:
An interesting report came in today, some short autocomplete queries return an unexpected 400 error with a leading slash (
/
).Some examples that are broken:
/v1/autocomplete?text=/cali
/v1/autocomplete?text=/colo
/v1/autocomplete?text=/brook
Some examples that work:
/v1/autocomplete?text=/broo
/v1/autocomplete?text=/asdf
In all broken cases, the
parsed_text.subject
property is just the slash:It looks like whether or not the input was parsed as a subject will determine if this bug manifests or not, but maybe we want to fix it elsewhere, like by removing leading slashes?
The text was updated successfully, but these errors were encountered: