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
hi @sebdesign . Tagging in case you didn't see it. This fix is working for me. Hoping not to fork your project, but let me know if this looks legit and you can implement? Thanks!
In the getState function, sometimes $accessor->getValue can return null.
however, getState is expecting a return type of string, so it breaks the state machine.
If you add a check, this fixes it:
if (is_null($state)) { return ''; }
but maybe there is a better way?
`
`
The text was updated successfully, but these errors were encountered: