Merge pull request #792 from meshtastic/channel_mute_updates

Finalize channel is_muted re-work
This commit is contained in:
Ben Meadors 2025-10-10 08:26:04 -05:00 committed by GitHub
commit 38638f19f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,11 +86,6 @@ message ChannelSettings {
* Per-channel module settings.
*/
ModuleSettings module_settings = 7;
/*
* Whether or not we should receive notifactions / alerts through this channel
*/
bool mute = 8;
}
/*
@ -103,10 +98,10 @@ message ModuleSettings {
uint32 position_precision = 1;
/*
* Controls whether or not the phone / clients should mute the current channel
* Controls whether or not the client / device should mute the current channel
* Useful for noisy public channels you don't necessarily want to disable
*/
bool is_client_muted = 2;
bool is_muted = 2;
}
/*