Skip to content

Commit

Permalink
Merge pull request #1767 from matrix-org/luke/fix-tint-updating
Browse files Browse the repository at this point in the history
Fix bug that prevented tint updates
  • Loading branch information
ara4n committed Feb 22, 2018
2 parents 8e0f0d3 + f08ec34 commit 663c7e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/structures/RoomView.js
Original file line number Diff line number Diff line change
Expand Up @@ -627,8 +627,8 @@ module.exports = React.createClass({
const room = this.state.room;
if (!room) return;

const color_scheme = SettingsStore.getValue("roomColor", room.room_id);
console.log("Tinter.tint from updateTint");
const color_scheme = SettingsStore.getValue("roomColor", room.roomId);
Tinter.tint(color_scheme.primary_color, color_scheme.secondary_color);
},

Expand Down

0 comments on commit 663c7e5

Please sign in to comment.