0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-13 14:48:48 +02:00

SYWEB-12: Store unknown state events so they are displayed in the Room Info dialog.

This commit is contained in:
Kegan Dougal 2014-10-30 11:22:47 +00:00
parent d5aa965522
commit 8e8bbb00f5

View file

@ -564,6 +564,13 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
handleRedaction(event, isLiveEvent);
break;
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(JSON.stringify(event, undefined, 4));
break;