mirror of https://github.com/vector-im/riot-web
Merge pull request #421 from matrix-org/dbkr/fix_mute_to_all_messages
Only try to delete room rule if it existspull/21833/head
commit
d23ed642a0
|
@ -100,7 +100,10 @@ function setRoomNotifsStateUnmuted(roomId, newState) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newState == 'all_messages') {
|
if (newState == 'all_messages') {
|
||||||
promises.push(cli.deletePushRule('global', 'room', roomId));
|
const roomRule = cli.getRoomPushRule('global', roomId);
|
||||||
|
if (roomRule) {
|
||||||
|
promises.push(cli.deletePushRule('global', 'room', roomRule.rule_id));
|
||||||
|
}
|
||||||
} else if (newState == 'mentions_only') {
|
} else if (newState == 'mentions_only') {
|
||||||
promises.push(cli.addPushRule('global', 'room', roomId, {
|
promises.push(cli.addPushRule('global', 'room', roomId, {
|
||||||
actions: [
|
actions: [
|
||||||
|
|
Loading…
Reference in New Issue