diff --git a/src/controllers/molecules/MessageTile.js b/src/controllers/molecules/MessageTile.js index ef56daa201..953e33b516 100644 --- a/src/controllers/molecules/MessageTile.js +++ b/src/controllers/molecules/MessageTile.js @@ -20,7 +20,7 @@ var MatrixClientPeg = require("../../MatrixClientPeg"); module.exports = { shouldHighlight: function() { - var actions = this.props.mxEvent.getPushActions(MatrixClientPeg.get()); + var actions = MatrixClientPeg.get().getPushActionsForEvent(this.props.mxEvent); if (!actions || !actions.tweaks) { return false; } return actions.tweaks.highlight; } diff --git a/src/controllers/organisms/RoomList.js b/src/controllers/organisms/RoomList.js index e4b1626014..cf07e96d5c 100644 --- a/src/controllers/organisms/RoomList.js +++ b/src/controllers/organisms/RoomList.js @@ -65,7 +65,7 @@ module.exports = { var hl = 1; - var actions = ev.getPushActions(MatrixClientPeg.get()); + var actions = MatrixClientPeg.get().getPushActionsForEvent(ev); if (actions && actions.tweaks && actions.tweaks.highlight) { hl = 2; }