Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
KhafraDev committed Aug 24, 2024
1 parent 7dde356 commit 2bc2110
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/web/websocket/websocket.js
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,9 @@ webidl.converters['DOMString or sequence<DOMString> or WebSocketInit'] = functio
webidl.converters.WebSocketSendData = function (V) {
if (webidl.util.Type(V) === 'Object') {
if (isBlobLike(V)) {
return webidl.converters.Blob(V)
console.log(V)
// return webidl.converters.Blob(V)
return V
}

if (ArrayBuffer.isView(V) || types.isArrayBuffer(V)) {
Expand Down

0 comments on commit 2bc2110

Please sign in to comment.