MatrixChat: Check if our state array is empty in the crawled messages response.
This commit is contained in:
parent
89f14e55a2
commit
64061173e1
1 changed files with 4 additions and 1 deletions
|
@ -2146,7 +2146,10 @@ export default createReactClass({
|
||||||
// Convert the plain JSON events into Matrix events so they get
|
// Convert the plain JSON events into Matrix events so they get
|
||||||
// decrypted if necessary.
|
// decrypted if necessary.
|
||||||
const matrixEvents = res.chunk.map(eventMapper);
|
const matrixEvents = res.chunk.map(eventMapper);
|
||||||
const stateEvents = res.state.map(eventMapper);
|
let stateEvents = [];
|
||||||
|
if (res.state !== undefined) {
|
||||||
|
stateEvents = res.state.map(eventMapper);
|
||||||
|
}
|
||||||
|
|
||||||
const profiles = {};
|
const profiles = {};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue