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 3b4eaa9 commit 56fe8bcCopy full SHA for 56fe8bc
1 file changed
central/src/routes/websockets.rs
@@ -193,13 +193,13 @@ impl WsState {
193
serde_json::to_value(r).map_err(WsHandleError::Serialization)?
194
}
195
WsMessageData::ValidateResponse(r) => {
196
- serde_json::to_value(r).map_err(WsHandleError::Serialization)?
+ serde_json::to_value(&r.items).map_err(WsHandleError::Serialization)?
197
198
WsMessageData::ValidateStrongResponse(r) => {
199
200
201
WsMessageData::ValidateCheckDataManyResponse(r) => {
202
203
204
};
205
0 commit comments