diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-21 17:55:41 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-21 17:55:41 +0100 |
commit | 2e1ab9db08e3fe41822a65fdf38feafbd22173b6 (patch) | |
tree | 07d304a6cfd661c9c449e69da97101e47e3a8e55 /webclient/app.js | |
parent | Add ts field to all events. (diff) | |
download | synapse-2e1ab9db08e3fe41822a65fdf38feafbd22173b6.tar.xz |
Only start event streaming after having set up the controllers.
Diffstat (limited to 'webclient/app.js')
-rw-r--r-- | webclient/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/app.js b/webclient/app.js index f27ebedc6f..944b8ec270 100644 --- a/webclient/app.js +++ b/webclient/app.js @@ -80,6 +80,6 @@ matrixWebClient.run(['$location', 'matrixService', 'eventStreamService', functio $location.path("login"); } else { - eventStreamService.resume(); + // eventStreamService.resume(); } }]); |