File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ # 1.2.23 - 25 Feb 2025
2
+ Bug fix:
3
+ - [ #1087 ] ( https://github.com/elysiajs/elysia/pull/1087 ) websocket to parse string array
4
+
1
5
# 1.2.22 - 24 Feb 2025
2
- Bug fix
6
+ Bug fix:
3
7
- [ #1074 ] ( https://github.com/elysiajs/elysia/pull/1074 ) hasTransform doesn't detect Transform on root
4
8
- [ #873 ] ( https://github.com/elysiajs/elysia/issues/873#issuecomment-2676628776 ) encode before type check
5
9
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ export const createWSMessageParser = (
206
206
if ( typeof message === 'string' ) {
207
207
const start = message ?. charCodeAt ( 0 )
208
208
209
- if ( start === 34 || start === 91 || start === 123 )
209
+ if ( start === 34 || start === 47 || start === 91 || start === 123 )
210
210
try {
211
211
message = JSON . parse ( message )
212
212
} catch {
You can’t perform that action at this time.
0 commit comments