File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -193,8 +193,8 @@ Future<SendMessageResult> sendMessage(
193193 'to' : destination.userIds,
194194 }}),
195195 '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),
198198 if (readBySender != null ) 'read_by_sender' : readBySender,
199199 },
200200 overrideUserAgent: switch ((supportsReadBySender, readBySender)) {
Original file line number Diff line number Diff line change @@ -362,8 +362,8 @@ void main() {
362362 'to' : streamId.toString (),
363363 'topic' : topic,
364364 'content' : content,
365- 'queue_id' : '" abc:123" ' ,
366- 'local_id' : '" 456" ' ,
365+ 'queue_id' : 'abc:123' ,
366+ 'local_id' : '456' ,
367367 'read_by_sender' : 'true' ,
368368 });
369369 });
You can’t perform that action at this time.
0 commit comments