Return the current state in the initial sync api.

paul/schema_breaking_changes
Erik Johnston 2014-08-21 15:06:22 +01:00
parent 063e1b22e6
commit c6950b18cc
1 changed files with 3 additions and 0 deletions

View File

@ -279,6 +279,9 @@ class MessageHandler(BaseHandler):
"start": token[0],
"end": token[1],
}
current_state = yield self.store.get_current_state(event.room_id)
d["state"] = [c.get_dict() for c in current_state]
except:
logger.exception("Failed to get snapshot")