We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20bd173 commit 00a012aCopy full SHA for 00a012a
lib/src/client/transport/xhr_transport.dart
@@ -51,7 +51,7 @@ class XhrTransportStream implements GrpcTransportStream {
51
: _onError = onError,
52
_onDone = onDone {
53
_outgoingMessages.stream.map(frame).listen(
54
- (data) => _request.send(Int8List.fromList(data).toJS),
+ (data) => _request.send(Uint8List.fromList(data).toJS),
55
cancelOnError: true,
56
onError: _onError);
57
0 commit comments