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
Not sure I see the difference between 2022dc313 and 2020mike2. Is the issue you're referring to that matching digits would also pick up the year? 2020mike2 would have the same issue.
I don't think I had a particular fix in mind for this, but a couple possible variations that occur to me now are
[a-zA-Z]+[0-9]* (if we assume digits only occur at the end of the event code)
[a-zA-Z][a-zA-Z0-9]* (if digits can occur anywhere after the start of the event code)
Example - MIKE should be MIKE2:
This regex is likely the issue:
the-blue-alliance-android/android/src/main/java/com/thebluealliance/androidclient/helpers/EventHelper.java
Line 37 in b43e027
The text was updated successfully, but these errors were encountered: