1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-08-10 19:43:07 +03:00

Merge pull request #173 from matrix-org/rav/configurable_sync_limit

Make the initialSyncLimit configurable
This commit is contained in:
Richard van der Hoff
2016-02-25 14:19:31 +00:00

View File

@@ -596,7 +596,7 @@ module.exports = React.createClass({
Presence.start();
cli.startClient({
pendingEventOrdering: "end",
initialSyncLimit: 20,
initialSyncLimit: this.props.config.sync_timeline_limit || 20,
});
},