Commit 440ef7b7 authored by Aurel's avatar Aurel

pass in syncing of no more data to send

parent 0eaebb66
...@@ -626,6 +626,7 @@ class SyncMLSubscription(XMLObject): ...@@ -626,6 +626,7 @@ class SyncMLSubscription(XMLObject):
# It will be copy to "data" property once synchronization # It will be copy to "data" property once synchronization
# is confirmed # is confirmed
signature.setTemporaryData(xml_object) signature.setTemporaryData(xml_object)
signature.doSync()
# Generate the command # Generate the command
syncml_logger.debug("will send Replace command with %s" syncml_logger.debug("will send Replace command with %s"
...@@ -636,7 +637,6 @@ class SyncMLSubscription(XMLObject): ...@@ -636,7 +637,6 @@ class SyncMLSubscription(XMLObject):
data=data_diff, data=data_diff,
more_data=more_data, more_data=more_data,
media_type=conduit.getContentType()) media_type=conduit.getContentType())
signature.doSync()
elif signature.getValidationState() != 'synchronized': elif signature.getValidationState() != 'synchronized':
# We should not have this case when we are in CONFLICT_MERGE # We should not have this case when we are in CONFLICT_MERGE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment