diff --git a/src/components/structures/RoomView.js b/src/components/structures/RoomView.js index 3f9d93c9b1..1bcbec4845 100644 --- a/src/components/structures/RoomView.js +++ b/src/components/structures/RoomView.js @@ -276,7 +276,9 @@ module.exports = React.createClass({ if (!this._permalinkCreators) this._permalinkCreators = {}; if (this._permalinkCreators[room.roomId]) return this._permalinkCreators[room.roomId]; - return this._permalinkCreators[room.roomId] = new RoomPermalinkCreator(room); + this._permalinkCreators[room.roomId] = new RoomPermalinkCreator(room); + this._permalinkCreators[room.roomId].load(); + return this._permalinkCreators[room.roomId]; }, _stopAllPermalinkCreators: function() {