feat: integrate chat voice and diagnostics client
This commit is contained in:
@@ -11,4 +11,3 @@ publish.workspace = true
|
||||
|
||||
[dependencies]
|
||||
thiserror.workspace = true
|
||||
tracing.workspace = true
|
||||
|
||||
@@ -706,9 +706,7 @@ fn pending_key(pending: &JoinPending) -> JoinOutcomeKey {
|
||||
}
|
||||
|
||||
fn key_matches(pending: Option<JoinPending>, key: JoinOutcomeKey) -> bool {
|
||||
pending
|
||||
.map(|pending| pending_key(&pending) == key)
|
||||
.unwrap_or(false)
|
||||
pending.is_some_and(|pending| pending_key(&pending) == key)
|
||||
}
|
||||
|
||||
fn stale(state: &mut ChannelJoinState, actions: &mut Vec<ChannelJoinAction>) -> JoinReduceStatus {
|
||||
|
||||
Reference in New Issue
Block a user