Skip to content

Commit

Permalink
Address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
osa1 committed Nov 30, 2023
1 parent 1f34c30 commit 78387a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/html.dart
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class HtmlWebSocketChannel extends StreamChannelMixin
(eventData as JSObject).instanceOfString('ArrayBuffer')) {
data = (eventData as JSArrayBuffer).toDart.asUint8List();
} else {
data = event.data.dartify();
data = eventData.dartify();
}
_controller.local.sink.add(data);
}
Expand Down

0 comments on commit 78387a6

Please sign in to comment.