also update e2e icon once the room becomes encrypted

This commit is contained in:
Bruno Windels 2019-02-01 19:14:11 +01:00
parent ea8de6fe07
commit 987b119731

View file

@ -591,6 +591,10 @@ module.exports = React.createClass({
this._updatePreviewUrlVisibility(room);
}
if (ev.getType() === "m.room.encryption") {
this._updateE2EStatus(room);
}
// ignore anything but real-time updates at the end of the room:
// updates from pagination will happen when the paginate completes.
if (toStartOfTimeline || !data || !data.liveEvent) return;