Don;t try to fetch push rules if we're a guest: it throws.

This commit is contained in:
David Baker 2016-02-10 11:16:36 +00:00
parent 0d2b042c0f
commit 038f613079

View file

@ -37,10 +37,12 @@ module.exports = React.createClass({
}); });
var areNotifsMuted = false; var areNotifsMuted = false;
var roomPushRule = MatrixClientPeg.get().getRoomPushRule("global", this.props.room.roomId); if (!MatrixClientPeg.get().isGuest()) {
if (roomPushRule) { var roomPushRule = MatrixClientPeg.get().getRoomPushRule("global", this.props.room.roomId);
if (0 <= roomPushRule.actions.indexOf("dont_notify")) { if (roomPushRule) {
areNotifsMuted = true; if (0 <= roomPushRule.actions.indexOf("dont_notify")) {
areNotifsMuted = true;
}
} }
} }