diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2016-09-17 04:25:00 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2016-12-12 09:11:58 -0200 |
commit | 2f7dc19efc8b89820cb44ed8b0b9cb225555d446 (patch) | |
tree | d88d555e93edbff9cfbc43f114888be5ed5c85b7 /client/src/leap | |
parent | 01625647c291a90b72a5c5caa9793fbf0d98a8f7 (diff) |
[bug] use an empty string to represent tumbstones
If a doc doesnt have a content it means it was deleted. Sync stream was
unable to represent this state.
Diffstat (limited to 'client/src/leap')
-rw-r--r-- | client/src/leap/soledad/client/http_target/fetch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/leap/soledad/client/http_target/fetch.py b/client/src/leap/soledad/client/http_target/fetch.py index 24d73025..26606e9b 100644 --- a/client/src/leap/soledad/client/http_target/fetch.py +++ b/client/src/leap/soledad/client/http_target/fetch.py @@ -205,7 +205,7 @@ class HTTPDocFetcher(object): line, comma = utils.check_and_strip_comma(data[index]) content, _ = utils.check_and_strip_comma(data[index + 1]) entry = json.loads(line) - entries.append((entry['id'], entry['rev'], content, + entries.append((entry['id'], entry['rev'], content or None, entry['gen'], entry['trans_id'])) except (IndexError, KeyError): raise errors.BrokenSyncStream |