summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2016-09-17 04:25:00 -0300
committerdrebs <drebs@leap.se>2016-12-12 09:11:58 -0200
commit2f7dc19efc8b89820cb44ed8b0b9cb225555d446 (patch)
treed88d555e93edbff9cfbc43f114888be5ed5c85b7 /client
parent01625647c291a90b72a5c5caa9793fbf0d98a8f7 (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')
-rw-r--r--client/src/leap/soledad/client/http_target/fetch.py2
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