Ignore sortindex when comparing if records are different because it's only used for ordering of records.

This commit is contained in:
Edward Lee 2009-10-16 16:18:38 -07:00
parent 0be8c60c74
commit 862fb7381e

View File

@ -501,7 +501,6 @@ SyncEngine.prototype = {
if (this._log.level <= Log4Moz.Level.Trace)
this._log.trace("Local record: " + local);
if (item.parentid == local.parentid &&
item.sortindex == local.sortindex &&
item.deleted == local.deleted &&
Utils.deepEquals(item.cleartext, local.cleartext)) {
this._log.trace("Local record is the same");