Merge pull request #3857 from matrix-org/t3chguy/Array.concat

Fix Array.concat undefined
This commit is contained in:
Michael Telatynski
2020-01-17 10:16:43 +00:00
committed by GitHub

View File

@@ -137,7 +137,7 @@ export default class BridgeSettingsTab extends React.Component {
const client = MatrixClientPeg.get();
const roomState = (client.getRoom(roomId)).currentState;
const bridgeEvents = Array.concat(...BRIDGE_EVENT_TYPES.map((typeName) =>
const bridgeEvents = [].concat(...BRIDGE_EVENT_TYPES.map((typeName) =>
Object.values(roomState.events[typeName] || {}),
));