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
When a task is created from the chatbot commands (i.e. /create), the casing used is what gets echoed back to the user, but the API's GET calls are case-sensitive and tasks are created in all-lower-case.
Scenario:
User: /create MyTask
...[Q&A to build task]
Bot: Created MyTask!
User: /complete MyTask <--- Backend receives a 404 error because the task MyTask is not found by the API
User: /complete mytask <--- Succeeds
The text was updated successfully, but these errors were encountered:
There are actually two issues here. One in that the task can't be complete unless the user sends the task name in lower case and the other that the bot does not actually respond when it receives the 404 error. No feedback is given to the user at all.
When a task is created from the chatbot commands (i.e. /create), the casing used is what gets echoed back to the user, but the API's GET calls are case-sensitive and tasks are created in all-lower-case.
Scenario:
The text was updated successfully, but these errors were encountered: