Merge pull request #173 from matrix-org/rav/configurable_sync_limit
Make the initialSyncLimit configurable
This commit is contained in:
commit
d5c83347a6
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue