1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Make the initialSyncLimit configurable

I keep wanting to change this to test things, and can never find the right
place to change it. Make it configurable.
This commit is contained in:
Richard van der Hoff
2016-02-24 16:42:23 +00:00
parent 4b13d71bb4
commit 4ce3598274

View File

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