Sync: don't re-apply local entries.

We were doing it to make sure we don't get overridden by
server changes. But we already changed this behaviour in
the past, so this call was just doing nothing and slowing
down the sync.
pull/29/head
Tom Hacohen 7 years ago
parent 90434e0d82
commit 5a2f8260c7

@ -184,7 +184,9 @@ abstract public class SyncManager {
throw new InterruptedException();
syncPhase = R.string.sync_phase_apply_local_entries;
App.log.info("Sync phase: " + context.getString(syncPhase));
/* FIXME: Skipping this now, because we already override with remote.
applyLocalEntries();
*/
if (Thread.interrupted())
throw new InterruptedException();

Loading…
Cancel
Save