From 5c430395ea8cffc0bd4820dd580f412c55cba6ff Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 4 Feb 2016 10:50:21 +0000 Subject: [PATCH] init timeline when we get the room, as otherwise we never load it after joining --- src/components/structures/RoomView.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/structures/RoomView.js b/src/components/structures/RoomView.js index 0d00b9afe5..fa183cd00e 100644 --- a/src/components/structures/RoomView.js +++ b/src/components/structures/RoomView.js @@ -420,6 +420,7 @@ module.exports = React.createClass({ this.setState({ room: room }); + this._initTimeline(this.props); } },