feat: basic ffi server to support other languages (#34)
* wip * wip * wip * wip not a fan of the way I do handles .. * errors and async semantic * fix example
This commit is contained in:
@@ -362,7 +362,7 @@ impl App {
|
||||
));
|
||||
ui.label(format!(
|
||||
"ParticipantCount: {:?}",
|
||||
room.session().participants().read().len() + 1
|
||||
room.session().participants().len() + 1
|
||||
));
|
||||
}
|
||||
}
|
||||
@@ -411,7 +411,6 @@ impl App {
|
||||
let name = self.state.room.lock().as_ref().and_then(|room| {
|
||||
room.session()
|
||||
.participants()
|
||||
.read()
|
||||
.get(participant_sid)
|
||||
.map(|p| p.name())
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user