Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(PS4): Fix serverCertificate defaulted to null (#6716)
For some reason on PS4, the check `val.buffer.constructor == ArrayBuffer` returns `false` when it should be `true` which causes the object cloning to return `null` instead of the array buffer. Modifying this to `val.buffer instanceof ArrayBuffer` now returns true which fixes the issue. This should work across devices. Original author: @nick-michael Co-authored-by: Nick Michael <[email protected]>
- Loading branch information