-
released this
2026-04-09 23:59:44 +03:00 | 19 commits to main since this releaseBug Fix
- Root cause:
executeToolendpoint used(array)cast which only converts top-level stdClass, leaving nested objects (likelegalAnalysis) as stdClass — causing "Cannot use object as array" fatal error in PHP 8.x - Fix: Use
json_decode(json_encode())for recursive deep conversion of all nested stdClass to arrays - Also includes v2.7.1 graceful error handling for webhook failures
Downloads
- Root cause: