8000 Oops, fix that. · linuxerwang/flutter-webrtc@44dd8ef · GitHub
[go: up one dir, main page]

Skip to content

Commit 44dd8ef

Browse files
Oops, fix that.
1 parent b20e4f1 commit 44dd8ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rtc_data_channel.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class RTCDataChannel {
190190
<String, dynamic>{
191191
'peerConnectionId': _peerConnectionId,
192192
'dataChannelId': _dataChannelId,
193-
'type': _messageTypeToTypeString[message.isBinary ? "binary" : "text"],
193+
'type': message.isBinary ? "binary" : "text",
194194
'data': data
195195
}
196196
);

0 commit comments

Comments
 (0)
0