handle mute/unmute of channels (USER_GUILD_SETTINGS_UPDATE)

This commit is contained in:
ouwou
2021-12-17 02:34:14 -05:00
parent 1fb7ca0007
commit 1d7529e609
6 changed files with 69 additions and 0 deletions

View File

@@ -586,3 +586,7 @@ void from_json(const nlohmann::json &j, MessageAckData &m) {
void to_json(nlohmann::json &j, const AckBulkData &m) {
j["read_states"] = m.ReadStates;
}
void from_json(const nlohmann::json &j, UserGuildSettingsUpdateData &m) {
m.Settings = j;
}