Removed haveDirty check from sync code
The dirty field does not exist in the media table anymore.
This commit is contained in:
parent
537bbe89c9
commit
471e3aead4
@ -697,7 +697,7 @@ class MediaSyncer(object):
|
|||||||
lastUsn = self.col.media.lastUsn()
|
lastUsn = self.col.media.lastUsn()
|
||||||
ret = self.server.begin()
|
ret = self.server.begin()
|
||||||
srvUsn = ret['usn']
|
srvUsn = ret['usn']
|
||||||
if lastUsn == srvUsn and not self.col.media.haveDirty():
|
if lastUsn == srvUsn:
|
||||||
return "noChanges"
|
return "noChanges"
|
||||||
|
|
||||||
# loop through and process changes from server
|
# loop through and process changes from server
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user