Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion jarust_plugins/src/legacy_video_room/handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ impl LegacyVideoRoomHandle {
let mut message: Value = params.try_into()?;
message["request"] = "kick".into();

self.handle.send_waiton_rsp::<()>(message, timeout).await
self.handle
.send_waiton_rsp::<Value>(message, timeout)
.await?;
Ok(())
}
}

Expand Down
5 changes: 4 additions & 1 deletion jarust_plugins/src/video_room/handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,10 @@ impl VideoRoomHandle {
let mut message: Value = params.try_into()?;
message["request"] = "kick".into();

self.handle.send_waiton_rsp::<()>(message, timeout).await
self.handle
.send_waiton_rsp::<Value>(message, timeout)
.await?;
Ok(())
}

/// Enable or disable recording on all participants while the conference is in progress
Expand Down