summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-06-24 11:11:53 +0100
committerErik Johnston <erik@matrix.org>2016-06-24 11:11:53 +0100
commit62050d2dfbdc029cebb1b2b8451ad128e3a6b022 (patch)
tree3954b77a86863a8971dd1447e40de3a708acbb50
parentMake jenkins-unittests.sh install deps (diff)
downloadsynapse-62050d2dfbdc029cebb1b2b8451ad128e3a6b022.tar.xz
Comments
-rw-r--r--synapse/handlers/sync.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py
index f068814e5d..37a2c4ba8b 100644
--- a/synapse/handlers/sync.py
+++ b/synapse/handlers/sync.py
@@ -1456,6 +1456,9 @@ class RoomSyncResultBuilder(object):
         self.since_token = since_token
         self.upto_token = upto_token
 
+        # Should this room always be included in the sync?
         self.always_include = False
+        # If we send down this room, should we send down the full state?
         self.would_require_resync = False
+        # Should the client consider this room "synced"?
         self.synced = True