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
The code in AbstractMvcView.determineEventId uses WebUtils.findParameterValue to fetch the Webflow _eventId. That code assumes it will be passed a String. If the parameter is not a String a ClassCastException is thrown.
I was supplying the eventId as a hidden field, but had erroneously supplied it twice. Thus _eventId was no longer a String but was actually multi-valued. My error certainly, but it shouldn't break the code.
Affects: 2.5.6
The text was updated successfully, but these errors were encountered:
Paul Chapman opened SPR-5349 and commented
The code in AbstractMvcView.determineEventId uses WebUtils.findParameterValue to fetch the Webflow _eventId. That code assumes it will be passed a String. If the parameter is not a String a ClassCastException is thrown.
I was supplying the eventId as a hidden field, but had erroneously supplied it twice. Thus _eventId was no longer a String but was actually multi-valued. My error certainly, but it shouldn't break the code.
Affects: 2.5.6
The text was updated successfully, but these errors were encountered: