File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/io/getstream/chat/java Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1219,7 +1219,7 @@ public static class MarkDeliveredRequestData {
12191219 public static class MarkDeliveredRequest extends StreamRequest <StreamResponseObject > {
12201220 @ Override
12211221 protected Call <StreamResponseObject > generateCall (Client client ) {
1222- return client .create (ChannelService .class ).markDelivered (this .internalBuild ());
1222+ return client .create (ChannelService .class ).markDelivered (this .internalBuild (), userId );
12231223 }
12241224 }
12251225 }
Original file line number Diff line number Diff line change @@ -106,5 +106,6 @@ Call<ChannelMemberResponse> updateMemberPartial(
106106
107107 @ POST ("channels/delivered" )
108108 Call <StreamResponseObject > markDelivered (
109- @ NotNull @ Body MarkDeliveredRequestData markDeliveredOptions );
109+ @ NotNull @ Body MarkDeliveredRequestData markDeliveredOptions ,
110+ @ Query ("user_id" ) String userId );
110111}
You can’t perform that action at this time.
0 commit comments