Commit b9525dc3 authored by Sebastian Kummer's avatar Sebastian Kummer

Merge pull request #326 in ZP/z-push from...

Merge pull request #326 in ZP/z-push from hotfix/ZP-1008-missing-syncronize-output-end-tag to develop

* commit '2339098b':
  ZP-1008 Missing Syncronize output end tag on sync when folder hierarchy changed.
parents 83d878d8 2339098b
...@@ -751,6 +751,7 @@ class Sync extends RequestProcessor { ...@@ -751,6 +751,7 @@ class Sync extends RequestProcessor {
self::$encoder->startTag(SYNC_STATUS); self::$encoder->startTag(SYNC_STATUS);
self::$encoder->content($status); self::$encoder->content($status);
self::$encoder->endTag(); self::$encoder->endTag();
self::$encoder->endTag(); // SYNC_SYNCHRONIZE
return true; return true;
} }
...@@ -891,6 +892,7 @@ class Sync extends RequestProcessor { ...@@ -891,6 +892,7 @@ class Sync extends RequestProcessor {
self::$encoder->startTag(SYNC_STATUS); self::$encoder->startTag(SYNC_STATUS);
self::$encoder->content($status); self::$encoder->content($status);
self::$encoder->endTag(); self::$encoder->endTag();
self::$encoder->endTag(); // SYNC_SYNCHRONIZE
return true; return true;
} }
......
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