fix(core): harden zodSocket protocol detection against payload field ambiguity #2898
+419
−8
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
Fixed a critical bug where user messages containing a
payloadproperty were incorrectly identified as protocol-wrapped messages, causing data corruption.The original implementation only checked for the presence of
payloadto determine if a message was wrapped, leading to false positives when user data legitimately contained apayloadfield.Solution
Enhanced protocol detection to require both
payloadANDversionproperties, plus validation thatpayloadis a plain object (not array/null/primitive).Changes:
The fix ensures that only messages with the full protocol signature (version + payload as object) are treated as wrapped messages.
✅ Checklist
Testing
✅ Added a new test file covering 11 cases
✅ All 11 new tests passing
✅ All 392 existing core tests passing
Changelog
Fixes: Protocol ambiguity where user data with 'payload' field was misinterpreted
Added Tests: 11/11 passing, including edge cases for non-object payloads and missing version
Screenshots
💯