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
{{ message }}
This repository was archived by the owner on Jan 23, 2024. It is now read-only.
So right now every CA user who DOES NOT have a positive SNAP AND Cash balance is getting the having_trouble_try_again_message response:
Here are our 50 most recent outbound texts on our main CA number:
The reason is that Twilio (or the provider) changed their transcription content to return 'zero dollars' instead of '$0.00' and our regex isn't catching these. Because in CA we're always looking for 2 matches (elsif regex_matches.count > 1), then if either balance transcription returns 'zero dollars' we just return having_trouble_try_again_message.
So right now every CA user who DOES NOT have a positive SNAP AND Cash balance is getting the

having_trouble_try_again_message
response:Here are our 50 most recent outbound texts on our main CA number:

The reason is that Twilio (or the provider) changed their transcription content to return 'zero dollars' instead of '$0.00' and our regex isn't catching these. Because in CA we're always looking for 2 matches (
elsif regex_matches.count > 1
), then if either balance transcription returns 'zero dollars' we just returnhaving_trouble_try_again_message
.Example new transcription:
SO, I think if we just start picking up 'zero dollars' in our CA handler regex then we should be all good.
The text was updated successfully, but these errors were encountered: