mirror of https://github.com/vector-im/riot-web
Fix the avatar / room name in room preview
When clicking on rooms from the room directory. When RoomViewStore resolved the room alias, it threw away the out-of-band data in the process. This must have been broken as part of the ILAG / RoomViewStore stuff.pull/21833/head
parent
081a900524
commit
ffb3d718d3
|
@ -153,6 +153,7 @@ class RoomViewStore extends Store {
|
||||||
event_id: payload.event_id,
|
event_id: payload.event_id,
|
||||||
highlighted: payload.highlighted,
|
highlighted: payload.highlighted,
|
||||||
room_alias: payload.room_alias,
|
room_alias: payload.room_alias,
|
||||||
|
oob_data: payload.oob_data,
|
||||||
});
|
});
|
||||||
}, (err) => {
|
}, (err) => {
|
||||||
dis.dispatch({
|
dis.dispatch({
|
||||||
|
|
Loading…
Reference in New Issue