We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0cc7b commit 5ad8225Copy full SHA for 5ad8225
lib/src/rpc/web_rtc/web_rtc_transport_stream.dart
@@ -73,7 +73,7 @@ class WebRtcTransportStream extends GrpcTransportStream {
73
..stream = headersRequest.stream
74
..message = (grpc.RequestMessage()
75
..hasMessage = true
76
- ..eos = false
+ ..eos = true
77
..packetMessage = (grpc.PacketMessage()
78
..data = data
79
..eom = true))
@@ -83,7 +83,7 @@ class WebRtcTransportStream extends GrpcTransportStream {
83
84
85
86
+ ..eos = index == chunks.length - 1
87
88
..data = chunk
89
..eom = index == chunks.length - 1)));
0 commit comments