1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

dont assume there items is an array

This commit is contained in:
Bruno Windels
2019-02-13 18:49:09 +01:00
parent 42409691b3
commit e51f279f36

View File

@@ -80,7 +80,7 @@ export default class LazyRenderList extends React.Component {
const {renderRange} = this.state;
const paddingTop = renderRange.topCount * itemHeight;
const paddingBottom = renderRange.bottomCount * itemHeight;
const renderedItems = items.slice(
const renderedItems = (items || []).slice(
renderRange.topCount,
renderRange.topCount + renderRange.renderCount,
);