mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
SYWEB-12: Store unknown state events so they are displayed in the Room Info dialog.
This commit is contained in:
parent
d5aa965522
commit
8e8bbb00f5
@ -564,6 +564,13 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
|
|||||||
handleRedaction(event, isLiveEvent);
|
handleRedaction(event, isLiveEvent);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
// if it is a state event, then just add it in so it
|
||||||
|
// displays on the Room Info screen.
|
||||||
|
if (typeof(event.state_key) === "string") { // incls. 0-len strings
|
||||||
|
if (event.room_id) {
|
||||||
|
handleRoomDateEvent(event, isLiveEvent, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
console.log("Unable to handle event type " + event.type);
|
console.log("Unable to handle event type " + event.type);
|
||||||
console.log(JSON.stringify(event, undefined, 4));
|
console.log(JSON.stringify(event, undefined, 4));
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user