fix(android): clarify channel and voice status icons
This commit is contained in:
@@ -368,6 +368,12 @@ pub struct BridgeClient {
|
||||
pub channel: u64,
|
||||
/// Nickname.
|
||||
pub name: String,
|
||||
/// True when this client has muted microphone/input capture.
|
||||
pub input_muted: bool,
|
||||
/// True when this client has muted speaker/output audio.
|
||||
pub output_muted: bool,
|
||||
/// True when recent inbound voice activity was observed for this client.
|
||||
pub is_speaking: bool,
|
||||
/// True for TeamSpeak ServerQuery clients.
|
||||
pub is_server_query: bool,
|
||||
}
|
||||
@@ -418,6 +424,9 @@ impl From<chanora_protocol::ServerSnapshot> for BridgeSnapshot {
|
||||
id: c.id.0,
|
||||
channel: c.channel.0,
|
||||
name: c.name,
|
||||
input_muted: c.input_muted,
|
||||
output_muted: c.output_muted,
|
||||
is_speaking: c.is_speaking,
|
||||
is_server_query: c.is_server_query,
|
||||
})
|
||||
.collect(),
|
||||
|
||||
Reference in New Issue
Block a user