File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -193,8 +193,8 @@ Future<SendMessageResult> sendMessage(
193
193
'to' : destination.userIds,
194
194
}}),
195
195
'content' : RawParameter (content),
196
- if (queueId != null ) 'queue_id' : queueId, // TODO should this use RawParameter?
197
- if (localId != null ) 'local_id' : localId, // TODO should this use RawParameter?
196
+ if (queueId != null ) 'queue_id' : RawParameter ( queueId),
197
+ if (localId != null ) 'local_id' : RawParameter ( localId),
198
198
if (readBySender != null ) 'read_by_sender' : readBySender,
199
199
},
200
200
overrideUserAgent: switch ((supportsReadBySender, readBySender)) {
Original file line number Diff line number Diff line change @@ -362,8 +362,8 @@ void main() {
362
362
'to' : streamId.toString (),
363
363
'topic' : topic,
364
364
'content' : content,
365
- 'queue_id' : '" abc:123" ' ,
366
- 'local_id' : '" 456" ' ,
365
+ 'queue_id' : 'abc:123' ,
366
+ 'local_id' : '456' ,
367
367
'read_by_sender' : 'true' ,
368
368
});
369
369
});
You can’t perform that action at this time.
0 commit comments