Bug 726045 - Match Fennec history limit.

This commit is contained in:
Richard Newman 2012-02-15 22:05:51 -08:00
parent 5edcb64b67
commit 701d9e41cf

View File

@ -50,7 +50,7 @@ public class AndroidBrowserHistoryServerSyncStage extends ServerSyncStage {
// Eventually this kind of sync stage will be data-driven,
// and all this hard-coding can go away.
private static final String HISTORY_SORT = "index";
private static final long HISTORY_REQUEST_LIMIT = 500;
private static final long HISTORY_REQUEST_LIMIT = 250;
@Override
public void execute(org.mozilla.gecko.sync.GlobalSession session) throws NoSuchStageException {
@ -85,4 +85,4 @@ public class AndroidBrowserHistoryServerSyncStage extends ServerSyncStage {
protected RecordFactory getRecordFactory() {
return new HistoryRecordFactory();
}
}
}